diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:50:28 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-05-18 11:54:03 +0100 |
commit | 61f012d60d37ec22edd3e06a93c1badce3049e13 (patch) | |
tree | d8500e71cf4ac28a99b00497c2a5bc4e8057da69 | |
parent | bb28ee2d21d16aca57ebfd7b001311b33de5874d (diff) | |
download | guix-61f012d60d37ec22edd3e06a93c1badce3049e13.tar guix-61f012d60d37ec22edd3e06a93c1badce3049e13.tar.gz |
gnu: Add ruby-gh.
-rw-r--r-- | gnu/packages/ruby.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 81fbd6085e..e74f486ad2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6548,3 +6548,32 @@ but it can function as a stand-alone templating engine.") (home-page "https://github.com/lostisland/faraday_middleware") (license license:expat))) + +(define-public ruby-gh + (package + (name "ruby-gh") + (version "0.14.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "gh" version)) + (sha256 + (base32 + "0j7m6jmxzkxvnqgnhmci33a89qpaxxcrm55kk5vz4bcpply04hx2")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-addressable" ,ruby-addressable) + ("ruby-backports" ,ruby-backports) + ("ruby-faraday" ,ruby-faraday) + ("ruby-multi-json" ,ruby-multi-json) + ("ruby-net-http-persistent" + ,ruby-net-http-persistent) + ;("ruby-net-http-pipeline" + ; ,ruby-net-http-pipeline) + )) + (synopsis + "multi-layer client for the github api v3") + (description + "multi-layer client for the github api v3") + (home-page "http://gh.rkh.im/") + (license license:expat))) |