diff options
author | Christopher Baines <mail@cbaines.net> | 2018-02-05 20:03:12 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:14:46 +0000 |
commit | d525200103a326a0ab974cdfb963b2d3ca7703a0 (patch) | |
tree | a0b456624758795882089ed5f6f702ec393ca271 | |
parent | 6bd21be360a10eae001dc6a1b9fb30053ca352cd (diff) | |
download | gnu-guix-d525200103a326a0ab974cdfb963b2d3ca7703a0.tar gnu-guix-d525200103a326a0ab974cdfb963b2d3ca7703a0.tar.gz |
gnu: Add ruby-omniauth-oauth2.
-rw-r--r-- | gnu/packages/ruby.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6a891a7ed0..15e7a8461e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8813,3 +8813,28 @@ but it can function as a stand-alone templating engine.") "Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.") (home-page "https://github.com/sferik/multi_xml") (license license:expat))) + +(define-public ruby-omniauth-oauth2 + (package + (name "ruby-omniauth-oauth2") + (version "1.3.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "omniauth-oauth2" version)) + (sha256 + (base32 + "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("ruby-oauth2" ,ruby-oauth2) + ("ruby-omniauth" ,ruby-omniauth))) + (synopsis + "An abstract OAuth2 strategy for OmniAuth.") + (description + "An abstract OAuth2 strategy for OmniAuth.") + (home-page + "https://github.com/omniauth/omniauth-oauth2") + (license license:expat))) |