gnu: Add ruby-temple.

* gnu/packages/ruby.scm (ruby-temple): New variable.
This commit is contained in:
Christopher Baines 2019-02-17 17:20:19 +00:00
parent 76b732fbc3
commit 09e2b0af40
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 23 additions and 0 deletions

View File

@ -2170,6 +2170,29 @@ localization.")
(home-page "https://github.com/ruby-gettext/locale") (home-page "https://github.com/ruby-gettext/locale")
(license (list license:lgpl3+ license:ruby)))) (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 (define-public ruby-text
(package (package
(name "ruby-text") (name "ruby-text")