guix_mirror_bot pushed a commit to branch master
in repository guix.

commit aeca076e3e9434998918bc290693e21b53d43259
Author: jgart <[email protected]>
AuthorDate: Thu Jan 29 15:22:49 2026 -0500

    gnu: sbcl-cl-syntax: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (sbcl-cl-syntax)[inputs]: Refactor to modern 
style.
    
    Change-Id: I98fd048ad5e905bd8bb63b7ffa19410891fc4842
---
 gnu/packages/lisp-xyz.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 0553ad0d89..a09818b705 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10653,10 +10653,10 @@ rendering of the XML Infoset.")
         (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
     (build-system asdf-build-system/sbcl)
     (inputs
-     `(("cl-annot" ,sbcl-cl-annot)
-       ("cl-interpol" ,sbcl-cl-interpol)
-       ("named-readtables" ,sbcl-named-readtables)
-       ("trivial-types" ,sbcl-trivial-types)))
+     (list sbcl-cl-annot
+           sbcl-cl-interpol
+           sbcl-named-readtables
+           sbcl-trivial-types))
     (arguments
      '(#:asd-systems '("cl-syntax"
                        "cl-syntax-annot"

Reply via email to