guix-commits
[Top][All Lists]
Advanced

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

10/11: gnu: Add clojure-tools-macro.


From: Danny Milosavljevic
Subject: 10/11: gnu: Add clojure-tools-macro.
Date: Mon, 19 Nov 2018 07:52:42 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 2cab1d4a7d0aa3d4d3d10d745d4bb8762f93f90b
Author: Alex Vong <address@hidden>
Date:   Sun Oct 14 19:37:40 2018 +0800

    gnu: Add clojure-tools-macro.
    
    * gnu/packages/lisp.scm (clojure-tools-macro): New public variable.
---
 gnu/packages/lisp.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index ddd912f..3d0fce4 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1711,6 +1711,28 @@ tree.
       (home-page "https://github.com/Engelberg/instaparse";)
       (license license:epl1.0))))
 
+(define-public clojure-tools-macro
+  (package
+    (name "clojure-tools-macro")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://github.com/clojure/tools.macro/archive";
+                       "/tools.macro-" version ".tar.gz"))
+       (sha256
+        (base32 "0fs64a0g63xx6g7sj6vrsqknhl90s0isf6k053nw8vv5prfzc7v6"))))
+    (build-system clojure-build-system)
+    (arguments
+     '(#:source-dirs '("src/main/clojure/")
+       #:test-dirs '("src/test/clojure/")
+       #:doc-dirs '()))
+    (synopsis "Utilities for macro writers")
+    (description "Tools for writing macros.")
+    (home-page "https://github.com/clojure/tools.macro";)
+    (license license:epl1.0)))
+
 (define-public confusion-mdl
   (let* ((commit "12a055581fc262225272df43287dae48281900f5"))
     (package



reply via email to

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