diff options
author | Stephen Paul Weber <singpolyma@singpolyma.net> | 2022-06-26 12:53:52 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2022-06-26 13:43:31 -0400 |
commit | 4009c98e5a4c03a523fa58f71016e2b053c5952b (patch) | |
tree | 18f26b9a287e088d8d959b2532bf319047be1778 | |
parent | gnu: zfs: Update to 2.1.5. (diff) | |
download | guix-4009c98e5a4c03a523fa58f71016e2b053c5952b.tar.gz guix-4009c98e5a4c03a523fa58f71016e2b053c5952b.tar.bz2 guix-4009c98e5a4c03a523fa58f71016e2b053c5952b.tar.xz |
gnu: Add ruby-roda.
* gnu/packages/ruby.scm (ruby-roda): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
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.") | |||
12666 | (description "This package provides a gem that calculates the exchange rate | 12666 | (description "This package provides a gem that calculates the exchange rate |
12667 | using published rates from open-exchange-rates. Compatible with the money gem.") | 12667 | using published rates from open-exchange-rates. Compatible with the money gem.") |
12668 | (license license:expat))) | 12668 | (license license:expat))) |
12669 | |||
12670 | (define-public ruby-roda | ||
12671 | (package | ||
12672 | (name "ruby-roda") | ||
12673 | (version "3.57.0") | ||
12674 | (source | ||
12675 | (origin | ||
12676 | (method url-fetch) | ||
12677 | (uri (rubygems-uri "roda" version)) | ||
12678 | (sha256 | ||
12679 | (base32 "0nkfxnbcfnriywvx9kpamp850cwjmqv8ssajc95d0aiyjr4kdrfy")))) | ||
12680 | (build-system ruby-build-system) | ||
12681 | (arguments | ||
12682 | ;; No rakefile | ||
12683 | `(#:tests? #f)) | ||
12684 | (propagated-inputs (list ruby-rack)) | ||
12685 | (home-page "http://roda.jeremyevans.net") | ||
12686 | (synopsis "Routing Tree Web Toolkit") | ||
12687 | (description "Roda is a routing tree web toolkit, designed for building fast | ||
12688 | and maintainable web applications in ruby.") | ||
12689 | (license license:expat))) | ||