gnu: Add ruby-progressbar.
* gnu/packages/ruby.scm (ruby-progressbar): New variable.
This commit is contained in:
parent
2ed201c112
commit
158a9253da
|
@ -2526,6 +2526,28 @@ rate.")
|
||||||
(home-page "https://github.com/paul/progress_bar")
|
(home-page "https://github.com/paul/progress_bar")
|
||||||
(license license:wtfpl2)))
|
(license license:wtfpl2)))
|
||||||
|
|
||||||
|
(define-public ruby-progressbar
|
||||||
|
(package
|
||||||
|
(name "ruby-progressbar")
|
||||||
|
(version "1.10.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "ruby-progressbar" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; TODO: There looks to be a circular dependency with ruby-fuubar.
|
||||||
|
#:tests? #f))
|
||||||
|
(synopsis "Text progress bar library for Ruby")
|
||||||
|
(description
|
||||||
|
"Ruby/ProgressBar is an flexible text progress bar library for Ruby.
|
||||||
|
The output can be customized with a formatting system.")
|
||||||
|
(home-page "https://github.com/jfelchner/ruby-progressbar")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-pry
|
(define-public ruby-pry
|
||||||
(package
|
(package
|
||||||
(name "ruby-pry")
|
(name "ruby-pry")
|
||||||
|
|
Loading…
Reference in New Issue