guix-commits
[Top][All Lists]
Advanced

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

02/12: gnu: Add ruby-dep.


From: guix-commits
Subject: 02/12: gnu: Add ruby-dep.
Date: Sat, 23 Mar 2019 05:57:30 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 95f85d4484d45bf68aa3dbe98d8c3b7d46ee1162
Author: Christopher Baines <address@hidden>
Date:   Sun Feb 17 17:21:22 2019 +0000

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2ef00ce..0895282 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -3788,6 +3788,27 @@ rate.")
     (home-page "https://github.com/paul/progress_bar";)
     (license license:wtfpl2)))
 
+(define-public ruby-dep
+  (package
+    (name "ruby-dep")
+    (version "1.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "ruby_dep" version))
+       (sha256
+        (base32
+         "1c1bkl97i9mkcvkn1jks346ksnvnnp84cs22gwl0vd7radybrgy5"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; No included tests
+    (synopsis "Creates a version constraint of supported Rubies")
+    (description
+     "This package helps create a version constraint of supported Rubies,
+suitable for a gemspec file.")
+    (home-page "https://github.com/e2/ruby_dep";)
+    (license license:expat)))
+
 (define-public ruby-progressbar
   (package
     (name "ruby-progressbar")



reply via email to

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