gnu: Add ruby-hashie.

* gnu/packages/ruby.scm (ruby-hashie): New variable.
This commit is contained in:
Julien Lepiller 2018-08-26 17:08:08 +02:00
parent 2c5028bd97
commit 2e072e37aa
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 20 additions and 0 deletions

View File

@ -5719,3 +5719,23 @@ is compatible with stylesheets designed for pygments.")
(sha256
(base32
"02kpahk5nkc33yxnn75649kzxaz073wvazr2zyg491nndykgnvcs"))))))
(define-public ruby-hashie
(package
(name "ruby-hashie")
(version "3.6.0")
(source (origin
(method url-fetch)
(uri (rubygems-uri "hashie" version))
(sha256
(base32
"13bdzfp25c8k51ayzxqkbzag3wj5gc1jd8h7d985nsq6pn57g5xh"))))
(build-system ruby-build-system)
(native-inputs
`(("bundler" ,bundler)))
(arguments `(#:tests? #f)); FIXME: Could not locate Gemfile or .bundle/ directory
(home-page "https://github.com/intridea/hashie")
(synopsis "Extensions to Ruby Hashes")
(description "Hashie is a collection of classes and mixins that make Ruby
hashes more powerful.")
(license license:expat)))