diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-17 17:20:19 +0000 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2019-02-24 18:52:08 +0000 |
commit | 288683f07ee5754cd6faec2a2d6be6968f8647d7 (patch) | |
tree | 45b66bf365639e95677b31d542c8b2af04066d83 | |
parent | e4da975206a40acc9158fd05c05035868626d83c (diff) | |
download | gnu-guix-288683f07ee5754cd6faec2a2d6be6968f8647d7.tar gnu-guix-288683f07ee5754cd6faec2a2d6be6968f8647d7.tar.gz |
gnu: Add ruby-temple.
* gnu/packages/ruby.scm (ruby-temple): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 72b3057333..bab016ea06 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2170,6 +2170,28 @@ localization.") (home-page "https://github.com/ruby-gettext/locale") (license (list license:lgpl3+ license:ruby)))) +(define-public ruby-temple + (package + (name "ruby-temple") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "temple" version)) + (sha256 + (base32 + "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-tilt" ,ruby-tilt) + ("ruby-bacon" ,ruby-bacon) + ("ruby-erubis" ,ruby-erubis))) + (synopsis "Template compilation framework in Ruby") + (description + "Abstraction and a framework for compiling templates to pure Ruby.") + (home-page "https://github.com/judofyr/temple") + (license license:expat))) + (define-public ruby-text (package (name "ruby-text") |