diff options
author | Christopher Baines <mail@cbaines.net> | 2018-02-05 20:03:25 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:14:46 +0000 |
commit | fa6cd57d5e4564f8633eb6dd3534f7b6c1002ad1 (patch) | |
tree | 651cd46e6be1c982e48eed3b4b08995a42a161bc | |
parent | d525200103a326a0ab974cdfb963b2d3ca7703a0 (diff) | |
download | gnu-guix-fa6cd57d5e4564f8633eb6dd3534f7b6c1002ad1.tar gnu-guix-fa6cd57d5e4564f8633eb6dd3534f7b6c1002ad1.tar.gz |
gnu: Add ruby-jwt.
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 15e7a8461e..91aac9d3c6 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8838,3 +8838,24 @@ but it can function as a stand-alone templating engine.") (home-page "https://github.com/omniauth/omniauth-oauth2") (license license:expat))) + +(define-public ruby-jwt + (package + (name "ruby-jwt") + (version "1.5.6") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "jwt" version)) + (sha256 + (base32 + "124zz1142bi2if7hl5pcrcamwchv4icyr5kaal9m2q6wqbdl6aw4")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (synopsis + "A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.") + (description + "This package provides a pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.") + (home-page "http://github.com/jwt/ruby-jwt") + (license license:expat))) |