mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add ruby-rake-manifest.
* gnu/packages/ruby.scm (ruby-rake-manifest): New variable.
This commit is contained in:
parent
aed6e3939b
commit
42c9921411
1 changed files with 34 additions and 0 deletions
|
@ -10413,6 +10413,40 @@ (define-public ruby-rake
|
||||||
(home-page "https://github.com/ruby/rake")
|
(home-page "https://github.com/ruby/rake")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-rake-manifest
|
||||||
|
(package
|
||||||
|
(name "ruby-rake-manifest")
|
||||||
|
(version "0.2.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mvz/rake-manifest")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16k2yvg773c25kp2vhzhp01rhf53k0nhrcmpv34k1fridw90r2k8"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-target "default"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'check) ;moved after the install phase
|
||||||
|
(add-after 'install 'check
|
||||||
|
(assoc-ref %standard-phases 'check))
|
||||||
|
(add-before 'check 'set-GEM_PATH
|
||||||
|
(lambda _
|
||||||
|
(setenv "GEM_PATH" (string-append
|
||||||
|
(getenv "GEM_PATH") ":"
|
||||||
|
#$output "/lib/ruby/vendor_ruby")))))))
|
||||||
|
(native-inputs (list ruby-rspec ruby-simplecov))
|
||||||
|
(synopsis "Rake tasks to generate and check a manifest file")
|
||||||
|
(description "This package provides Rake tasks to generate and check a
|
||||||
|
manifest file.")
|
||||||
|
(home-page "https://github.com/mvz/rake-manifest")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-childprocess
|
(define-public ruby-childprocess
|
||||||
(package
|
(package
|
||||||
(name "ruby-childprocess")
|
(name "ruby-childprocess")
|
||||||
|
|
Loading…
Reference in a new issue