guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b2cd73d28a7d4046bb53242f62fecc37cd135967
Author: jgart <[email protected]>
AuthorDate: Thu Jan 29 15:35:52 2026 -0500

    gnu: sbcl-closure-common: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (sbcl-closure-common): Refactor to modern style.
    [inputs]: Refactor it.
    [license]: Add it.
    
    Change-Id: I5212175fd669f3d2aadf85b842021190ea3036a6
---
 gnu/packages/lisp-xyz.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index a2a8624660..fb84f2e231 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12409,20 +12409,19 @@ Common Lisp.")
        (origin
          (method git-fetch)
          (uri (git-reference
-               (url "https://github.com/sharplispers/closure-common";)
-               (commit commit)))
+                (url "https://github.com/sharplispers/closure-common";)
+                (commit commit)))
          (file-name (git-file-name name version))
          (sha256
           (base32
            "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
       (inputs
-       `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
-         ("babel" ,sbcl-babel)))
+       (list sbcl-trivial-gray-streams
+             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))))
+      (license license:llgpl))))
 
 (define-public sbcl-closure-template
   ;; There are no releases since 2015.

Reply via email to