mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-utils.
* gnu/packages/ruby.scm (ruby-utils): New variable.
This commit is contained in:
parent
6e376ca46a
commit
53239b5f96
1 changed files with 27 additions and 0 deletions
|
@ -2043,6 +2043,33 @@ (define-public ruby-pstree
|
|||
;; There is no mention of the "or later" clause.
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public ruby-utils
|
||||
(package
|
||||
(name "ruby-utils")
|
||||
(version "0.2.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "utils" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0vycgscxf3s1xn4yyfsq54zlh082581ga8azybmqgc4pij6iz2cd"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs
|
||||
`(("ruby-tins" ,ruby-tins)
|
||||
("ruby-term-ansicolor" ,ruby-term-ansicolor)
|
||||
("ruby-pstree" ,ruby-pstree)
|
||||
("ruby-pry-editline" ,ruby-pry-editline)))
|
||||
(native-inputs
|
||||
`(("ruby-gem-hadar" ,ruby-gem-hadar)
|
||||
("bundler" ,bundler)))
|
||||
(synopsis "Command line tools for working with Ruby")
|
||||
(description
|
||||
"This package provides assorted command line tools that may be useful
|
||||
when working with Ruby code.")
|
||||
(home-page "https://github.com/flori/utils")
|
||||
;; There is no mention of the "or later" clause.
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public ruby-json
|
||||
(package
|
||||
(name "ruby-json")
|
||||
|
|
Loading…
Reference in a new issue