guix-commits
[Top][All Lists]
Advanced

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

21/23: gnu: Add ruby-temple.


From: guix-commits
Subject: 21/23: gnu: Add ruby-temple.
Date: Mon, 4 Mar 2019 15:33:38 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 09e2b0af40f08a2f279d67bc0db3a1a28962405b
Author: Christopher Baines <address@hidden>
Date:   Sun Feb 17 17:20:19 2019 +0000

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index a547f5d..4cf938f 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")



reply via email to

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