diff options
author | Stephen Paul Weber <singpolyma@singpolyma.net> | 2022-05-10 10:37:02 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2022-05-10 11:05:03 -0400 |
commit | dda07b2cbc9875b4a7ce290a867935313b2e88fd (patch) | |
tree | fb2b8284e689d24f8efac9121c3cd120ad83aac9 /gnu/packages/ruby.scm | |
parent | 9a867c26b0138dcdb5bf79bad4b8a342498db78a (diff) | |
download | guix-dda07b2cbc9875b4a7ce290a867935313b2e88fd.tar.gz |
gnu: Add ruby-dhall.
* gnu/packages/ruby.scm (ruby-dhall): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 15f875f976..76dd78709f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -12508,3 +12508,33 @@ templates.") (description "Base32 is a library which provides base32 decoding and encoding.") (license license:expat))) + +(define-public ruby-dhall + (package + (name "ruby-dhall") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "dhall" version)) + (sha256 + (base32 "09wcq8xc1ynld04r2f332bx8cn7rjc4afaq8hm1dr2fc35jlpn6m")))) + (build-system ruby-build-system) + (arguments + ;; No test in gem archive + `(#:tests? #f)) + (propagated-inputs + (list + ruby-base32 + ruby-cbor + ruby-citrus + ruby-lazy-object + ruby-multihashes + ruby-promise + ruby-value-semantics)) + (home-page "https://git.sr.ht/~singpolyma/dhall-ruby") + (synopsis "Ruby implementation of the Dhall configuration language") + (description "Dhall.rb is a Ruby implementation of the Dhall configuration +language. Dhall is a memory safe and non-Turing-complete configuration +language.") + (license license:gpl3+))) |