gnu: Add ruby-dep.

* gnu/packages/ruby.scm (ruby-dep): New variable.
master
Christopher Baines 2019-02-17 17:21:22 +00:00
parent a774946596
commit 95f85d4484
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 21 additions and 0 deletions

View File

@ -3788,6 +3788,27 @@ rate.")
(home-page "https://github.com/paul/progress_bar")
(license license:wtfpl2)))
(define-public ruby-dep
(package
(name "ruby-dep")
(version "1.5.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "ruby_dep" version))
(sha256
(base32
"1c1bkl97i9mkcvkn1jks346ksnvnnp84cs22gwl0vd7radybrgy5"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f)) ; No included tests
(synopsis "Creates a version constraint of supported Rubies")
(description
"This package helps create a version constraint of supported Rubies,
suitable for a gemspec file.")
(home-page "https://github.com/e2/ruby_dep")
(license license:expat)))
(define-public ruby-progressbar
(package
(name "ruby-progressbar")