3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add ruby-childprocess@0.6.3.

* gnu/packages/ruby.scm (ruby-childprocess): Modify.
(ruby-childprocess-0.6): New variable.
This commit is contained in:
Danny Milosavljevic 2018-07-31 19:05:08 +02:00
parent c106d03b88
commit 1f10e28d86
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -5033,17 +5033,17 @@ in standard Ruby syntax.")
(home-page "https://github.com/ruby/rake")
(license license:expat)))
(define-public ruby-childprocess
(define-public ruby-childprocess-0.6
(package
(name "ruby-childprocess")
(version "0.9.0")
(version "0.6.3")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "childprocess" version))
(sha256
(base32
"0a61922kmvcxyj5l70fycapr87gz1dzzlkfpq85rfqk5vdh3d28p"))))
"1p3f43scdzx9zxmy2kw5zsc3az6v46nq4brwcxmnscjy4w4racbv"))))
(build-system ruby-build-system)
(arguments
`(#:tests? #f))
@ -5057,3 +5057,16 @@ in standard Ruby syntax.")
programs running in the background, in Ruby.")
(home-page "http://github.com/enkessler/childprocess")
(license license:expat)))
(define-public ruby-childprocess
(package
(inherit ruby-childprocess-0.6)
(name "ruby-childprocess")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "childprocess" version))
(sha256
(base32
"0a61922kmvcxyj5l70fycapr87gz1dzzlkfpq85rfqk5vdh3d28p"))))))