guix-commits
[Top][All Lists]
Advanced

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

14/14: gnu: Add sbcl-closure-common.


From: guix-commits
Subject: 14/14: gnu: Add sbcl-closure-common.
Date: Wed, 26 Jun 2019 07:06:20 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 63015205d82a2ab0c1b79462f96ca0a03543c3c5
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Jun 26 13:03:58 2019 +0200

    gnu: Add sbcl-closure-common.
    
    * gnu/packages/lisp.scm (sbcl-closure-common): New variable.
---
 gnu/packages/lisp.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index d7f3f01..62e9a35 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5906,3 +5906,30 @@ and @code{kqueue(2)}), a pathname library and 
file-system utilities.")
       (description "This is a Common Lisp library that allows to convert
 floating point values to IEEE 754 binary representation.")
       (license license:bsd-3))))
+
+(define sbcl-closure-common
+  (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
+        (revision "1"))
+    (package
+      (name "sbcl-closure-common")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "20101006" revision commit))
+      (home-page "https://github.com/sharplispers/closure-common";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
+      (inputs
+       `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
+         ("babel" ,sbcl-babel)))
+      (synopsis "Support Common Lisp library for CXML")
+      (description "Closure-common is an internal helper library.  The name
+Closure is a reference to the web browser it was originally written for.")
+      ;; TODO: License?
+      (license #f))))



reply via email to

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