guix-patches
[Top][All Lists]
Advanced

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

[bug#50537] [PATCH v2 19/27] gnu: Add ruby-roda.


From: Stephen Paul Weber
Subject: [bug#50537] [PATCH v2 19/27] gnu: Add ruby-roda.
Date: Wed, 27 Apr 2022 13:46:25 -0500

* gnu/packages/ruby.scm (ruby-roda): 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 100f9fd1ad..d734da56e0 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12732,3 +12732,24 @@ published rates from open-exchange-rates.  Compatible 
with the money gem.")
     (home-page
       "https://github.com/spk/money-open-exchange-rates";)
     (license license:expat)))
+
+(define-public ruby-roda
+  (package
+    (name "ruby-roda")
+    (version "3.47.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "roda" version))
+        (sha256
+          (base32
+            "1g3zs4bk8hqii15ci1hsykcsya88vr2qv63gp1qbcx4bm14l8lkl"))))
+    (build-system ruby-build-system)
+    (arguments
+     ;; No rakefile
+     `(#:tests? #f))
+    (propagated-inputs `(("ruby-rack" ,ruby-rack)))
+    (synopsis "Routing tree web toolkit")
+    (description "Routing tree web toolkit")
+    (home-page "http://roda.jeremyevans.net";)
+    (license license:expat)))
-- 
2.30.2





reply via email to

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