From effedefc063458776bd1121d3dd9bfbe99bff970 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 5 Feb 2018 20:03:41 +0000 Subject: gnu: Add ruby-omniauth. --- gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 87707ff421..79fa580177 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8886,3 +8886,28 @@ but it can function as a stand-alone templating engine.") "This package provides a Ruby wrapper for the OAuth 2.0 protocol built with a similar style to the original OAuth spec.") (home-page "http://github.com/intridea/oauth2") (license license:expat))) + +(define-public ruby-omniauth + (package + (name "ruby-omniauth") + (version "1.8.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "omniauth" version)) + (sha256 + (base32 + "1msqr4qq7mfdvl3rg89529isrv595hvjpj2gi0say4b8nwqfggmg")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("ruby-hashie" ,ruby-hashie) + ("ruby-rack" ,ruby-rack))) + (synopsis + "A generalized Rack framework for multiple-provider authentication.") + (description + "This package provides a generalized Rack framework for multiple-provider authentication.") + (home-page + "https://github.com/omniauth/omniauth") + (license license:expat))) -- cgit v1.2.3