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 c250d4e913 gnu: sbcl-let-over-lambda: Refactor to modern style.
c250d4e913 is described below
commit c250d4e913eab4051e7e19c33c65996d5aafad0a
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 02:30:22 2026 -0500
gnu: sbcl-let-over-lambda: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-let-over-lambda)[inputs]: Refactor to
modern style.
Change-Id: Ib321da75775b4215375a835bad793ab1c5587211
---
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 5b8fa3011f..8616705603 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -21011,9 +21011,9 @@ Lem to manage packages within the user configuration
directory.")
;; required by #<SYSTEM "let-over-lambda">
`(#:tests? #f))
(inputs
- `(("alexandria" ,sbcl-alexandria)
- ("cl-ppcre" ,sbcl-cl-ppcre)
- ("named-readtables" ,sbcl-named-readtables)))
+ (list sbcl-alexandria
+ sbcl-cl-ppcre
+ sbcl-named-readtables))
(native-inputs
(list sbcl-prove))
(home-page "https://github.com/thephoeron/let-over-lambda")