guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add sbcl-cl-reexport.


From: guix-commits
Subject: 01/02: gnu: Add sbcl-cl-reexport.
Date: Wed, 26 Jun 2019 07:39:45 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 167fec29f509fbb2904ecb7226d5cdf1e490f5a5
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Jun 26 13:39:02 2019 +0200

    gnu: Add sbcl-cl-reexport.
    
    * gnu/packages/lisp.scm (sbcl-cl-reexport): New variable.
---
 gnu/packages/lisp.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 62e9a35..46c670b 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5933,3 +5933,31 @@ floating point values to IEEE 754 binary 
representation.")
 Closure is a reference to the web browser it was originally written for.")
       ;; TODO: License?
       (license #f))))
+
+(define-public sbcl-cl-reexport
+  (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
+        (revision "1"))
+    (package
+      (name "sbcl-cl-reexport")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "0.1" revision commit))
+      (home-page "https://github.com/takagi/cl-reexport";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)))
+      (arguments
+       ;; TODO: Tests fail because cl-test-more is missing, but I can't find 
it online.
+       `(#:tests? #f))
+      (synopsis "HTTP cookie manager for Common Lisp")
+      (description "cl-cookie is a Common Lisp library featuring parsing of
+cookie headers, cookie creation, cookie jar creation and more.")
+      (license license:llgpl))))



reply via email to

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