guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b5c9d79f0712468f107075b988c8685b171c0f5c
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 02:10:28 2026 -0500

    gnu: sbcl-routes: Refactor to modern style.
    
    * gnu/packages/lisp-xyz.scm (sbcl-routes)[inputs]: Refactor to modern style.
    
    Change-Id: I75e921bcf83454cfbb3f6e54203eb6b193aae4cb
---
 gnu/packages/lisp-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4b58fd7afb..8c846310f3 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -28076,9 +28076,9 @@ process form data posted with HTTP POST method using 
enctype
                (substitute* "routes.asd"
                  ((" :force t") "")))))))
       (inputs
-       `(("iterate" ,sbcl-iterate)
-         ("puri" ,sbcl-puri)
-         ("split-sequence" ,sbcl-split-sequence)))
+       (list sbcl-iterate
+             sbcl-puri
+             sbcl-split-sequence))
       (native-inputs
        (list sbcl-lift))
       (home-page "https://github.com/archimag/cl-routes";)

Reply via email to