guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#34514] [PATCH 20/34] gnu: Add ruby-temple.


From: Christopher Baines
Subject: [bug#34514] [PATCH 20/34] gnu: Add ruby-temple.
Date: Sun, 17 Feb 2019 19:23:00 +0000

* gnu/packages/ruby.scm (ruby-temple): New variable.
---
 gnu/packages/ruby.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 8fe0e9b60f..f47802a389 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2093,6 +2093,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")
-- 
2.20.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]