This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 3929e8d4c7 gnu: sbcl-markup-reader: Refactor to modern style.
3929e8d4c7 is described below

commit 3929e8d4c72750306837ce13ab5ad56385eaa87f
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 02:07:02 2026 -0500

    gnu: sbcl-markup-reader: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (sbcl-markup-reader)[inputs]: Refactor to 
modern style.
    
    Change-Id: Ibf81c1192b251ea16721fd0553d736c7f5173006
---
 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 5d396bf706..1c8ab76638 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -22547,10 +22547,10 @@ addition, removal, and random selection.")
       (native-inputs
        (list sbcl-fiveam))
       (inputs
-       `(("alexandria" ,sbcl-alexandria)
-         ("cl-str" ,sbcl-cl-str)
-         ("named-readtables" ,sbcl-named-readtables)
-         ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
+       (list sbcl-alexandria
+             sbcl-cl-str
+             sbcl-named-readtables
+             sbcl-trivial-gray-streams))
       (home-page "https://github.com/moderninterpreters/markup";)
       (synopsis "Reader-macro to read HTML tags inside of Common Lisp code")
       (description

Reply via email to