me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-roda.

* gnu/packages/ruby.scm (ruby-roda): New variable.

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
master
Stephen Paul Weber 2022-06-26 12:53:52 -04:00 committed by Raghav Gururajan
parent cbf02f10d7
commit 4009c98e5a
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 21 additions and 0 deletions

View File

@ -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)))