guix-commits
[Top][All Lists]
Advanced

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

11/11: gnu: cl-reexport: Several fixes.


From: guix-commits
Subject: 11/11: gnu: cl-reexport: Several fixes.
Date: Thu, 10 Mar 2022 09:46:08 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit aa350909c194a3ac8bc5e5bead86694df6402cde
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Thu Mar 10 15:26:00 2022 +0100

    gnu: cl-reexport: Several fixes.
    
    * gnu/packages/lisp-xyz.scm (sbcl-cl-reexport)[source]: Hardcode URL.
      [inputs]: Use new style.
      [synopsis, description]: Fix them.
---
 gnu/packages/lisp-xyz.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 8c27339969..fc18742e3c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5792,20 +5792,22 @@ XSD type library.")
        (origin
          (method git-fetch)
          (uri (git-reference
-               (url home-page)
+               (url "https://github.com/takagi/cl-reexport";)
                (commit commit)))
-         (file-name (git-file-name name version))
+         (file-name (git-file-name "cl-reexport" version))
          (sha256
           (base32
            "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
       (inputs
-       `(("alexandria" ,sbcl-alexandria)))
+       (list 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.")
+      (synopsis "Reexport external symbols in other Common Lisp packages")
+      (description
+       "Cl-reexport makes a package reexport symbols which are external
+symbols in other Common Lisp packages.  This fanctionality is intended to be
+used with (virtual) hierarchical packages.")
       (license license:llgpl))))
 
 (define-public cl-reexport



reply via email to

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