guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/66: gnu: Add ruby-progressbar.


From: guix-commits
Subject: 04/66: gnu: Add ruby-progressbar.
Date: Thu, 14 Feb 2019 16:38:31 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 158a9253da855558f397b45fc7378664876d0f59
Author: Christopher Baines <address@hidden>
Date:   Sun Jan 27 08:58:51 2019 +0000

    gnu: Add ruby-progressbar.
    
    * gnu/packages/ruby.scm (ruby-progressbar): New variable.
---
 gnu/packages/ruby.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index e02eac6..32a4981 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2526,6 +2526,28 @@ rate.")
     (home-page "https://github.com/paul/progress_bar";)
     (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
   (package
     (name "ruby-pry")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]