diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-17 17:20:19 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-03-04 20:33:22 +0000 |
commit | 09e2b0af40f08a2f279d67bc0db3a1a28962405b (patch) | |
tree | 9221508e40f6b3818406a915ff01fb189f9d337e /gnu | |
parent | 76b732fbc36713136c2bc4228c24890284a94f08 (diff) | |
download | guix-09e2b0af40f08a2f279d67bc0db3a1a28962405b.tar guix-09e2b0af40f08a2f279d67bc0db3a1a28962405b.tar.gz |
gnu: Add ruby-temple.
* gnu/packages/ruby.scm (ruby-temple): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index a547f5d8ae..4cf938f6f5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2170,6 +2170,29 @@ 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.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "temple" version)) + (sha256 + (base32 + "158d7ygbwcifqnvrph219p7m78yjdjazhykv5darbkms7bxm5y09")))) + (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 + "Temple is an abstraction and 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") |