guix-commits
[Top][All Lists]
Advanced

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

05/38: gnu: Add anaphora.


From: Pierre Neidhardt
Subject: 05/38: gnu: Add anaphora.
Date: Tue, 2 Oct 2018 14:00:09 -0400 (EDT)

ambrevar pushed a commit to branch wip-next-browser
in repository guix.

commit 25a6239624b9bb6ac0df1467b8b6bc3389dd66e3
Author: Pierre Neidhardt <address@hidden>
Date:   Mon Oct 1 15:28:56 2018 +0200

    gnu: Add anaphora.
    
    * gnu/packages/lisp.scm (cl-anaphora, ecl-anaphora, sbcl-anaphora): New 
variables.
---
 gnu/packages/lisp.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 2b3c992..c359aaa 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -2247,6 +2247,37 @@ testing.  It is an extension of the library written by 
Chris Riesbeck.")
 (define-public ecl-lisp-unit
   (sbcl-package->ecl-package sbcl-lisp-unit))
 
+(define-public sbcl-anaphora
+  (package
+    (name "sbcl-anaphora")
+    (version "0.9.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tokenrove/anaphora";)
+             (commit version)))
+       (sha256
+        (base32
+         "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
+       (file-name (git-file-name "anaphora" version))))
+    (build-system asdf-build-system/sbcl)
+    (inputs
+     `(("rt" ,sbcl-rt)))
+    (synopsis "The anaphoric macro collection from Hell")
+    (description
+     "Anaphora is the anaphoric macro collection from Hell: it includes many
+new fiends in addition to old friends like @command{aif} and
address@hidden")
+    (home-page "https://github.com/tokenrove/anaphora";)
+    (license license:public-domain)))
+
+(define-public cl-anaphora
+  (sbcl-package->cl-source-package sbcl-anaphora))
+
+(define-public ecl-anaphora
+  (sbcl-package->ecl-package sbcl-anaphora))
+
 (define-public sbcl-ascii-strings
   (let ((revision "1")
         (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))



reply via email to

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