mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-nenv.
* gnu/packages/ruby.scm (ruby-nenv): New variable.
This commit is contained in:
parent
ec79018e68
commit
70b4cf3818
1 changed files with 22 additions and 0 deletions
|
@ -550,6 +550,28 @@ (define-public ruby-lumberjack
|
|||
(home-page "http://github.com/bdurand/lumberjack")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-nenv
|
||||
(package
|
||||
(name "ruby-nenv")
|
||||
(version "0.2.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "nenv" version))
|
||||
(sha256
|
||||
(base32
|
||||
"152wxwri0afwgnxdf93gi6wjl9rr5z7vwp8ln0gpa3rddbfc27s6"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no tests included
|
||||
(native-inputs
|
||||
`(("ruby-rspec" ,ruby-rspec)
|
||||
("bundler" ,bundler)))
|
||||
(synopsis "Ruby interface for modifying the environment")
|
||||
(description "Nenv provides a convenient wrapper for Ruby's ENV to modify
|
||||
and inspect the environment.")
|
||||
(home-page "https://github.com/e2/nenv")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-useragent
|
||||
(package
|
||||
(name "ruby-useragent")
|
||||
|
|
Loading…
Reference in a new issue