gnu: Add ruby-rake.
* gnu/packages/ruby.scm (ruby-rake): New variable.
This commit is contained in:
parent
d64ebebd8e
commit
670ee20a57
|
@ -4911,3 +4911,24 @@ thing this library does today is convert org-mode files to HTML or Textile or
|
||||||
Markdown.")
|
Markdown.")
|
||||||
(home-page "https://github.com/wallyqs/org-ruby")
|
(home-page "https://github.com/wallyqs/org-ruby")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-rake
|
||||||
|
(package
|
||||||
|
(name "ruby-rake")
|
||||||
|
(version "12.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "rake" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"190p7cs8zdn07mjj6xwwsdna3g0r98zs4crz7jh2j2q5b0nbxgjf"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("bundler" ,bundler)))
|
||||||
|
(synopsis "Rake is a Make-like program implemented in Ruby")
|
||||||
|
(description
|
||||||
|
"Rake is a Make-like program where tasks and dependencies are specified
|
||||||
|
in standard Ruby syntax.")
|
||||||
|
(home-page "https://github.com/ruby/rake")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue