guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Add ruby-roda.


From: guix-commits
Subject: 01/04: gnu: Add ruby-roda.
Date: Sun, 26 Jun 2022 13:44:45 -0400 (EDT)

raghavgururajan pushed a commit to branch master
in repository guix.

commit 4009c98e5a4c03a523fa58f71016e2b053c5952b
Author: Stephen Paul Weber <singpolyma@singpolyma.net>
AuthorDate: Sun Jun 26 12:53:52 2022 -0400

    gnu: Add ruby-roda.
    
    * gnu/packages/ruby.scm (ruby-roda): New variable.
    
    Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
---
 gnu/packages/ruby.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 800ab194fe..4ba14f9adf 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12666,3 +12666,24 @@ into Money objects.")
     (description "This package provides a gem that calculates the exchange rate
 using published rates from open-exchange-rates.  Compatible with the money 
gem.")
     (license license:expat)))
+
+(define-public ruby-roda
+  (package
+    (name "ruby-roda")
+    (version "3.57.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "roda" version))
+        (sha256
+          (base32 "0nkfxnbcfnriywvx9kpamp850cwjmqv8ssajc95d0aiyjr4kdrfy"))))
+    (build-system ruby-build-system)
+    (arguments
+     ;; No rakefile
+     `(#:tests? #f))
+    (propagated-inputs (list ruby-rack))
+    (home-page "http://roda.jeremyevans.net";)
+    (synopsis "Routing Tree Web Toolkit")
+    (description "Roda is a routing tree web toolkit, designed for building 
fast
+and maintainable web applications in ruby.")
+    (license license:expat)))



reply via email to

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