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 37f1465d45 gnu: sbcl-numcl: Refactor to modern style.
37f1465d45 is described below
commit 37f1465d4570002c22a692e6c3d09fb421715f18
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 02:05:09 2026 -0500
gnu: sbcl-numcl: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-numcl)[inputs]: Refactor to modern style.
Change-Id: I579c757eb5fb6b66b1149d137c0f04aa1619fd9a
---
gnu/packages/lisp-xyz.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 701f73bad5..5d396bf706 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24747,17 +24747,17 @@ symbols.")
(native-inputs
(list sbcl-fiveam))
(inputs
- `(("alexandria" ,sbcl-alexandria)
- ("cl-randist" ,sbcl-cl-randist)
- ("constantfold" ,sbcl-constantfold)
- ("float-features" ,sbcl-float-features)
- ("function-cache" ,sbcl-function-cache)
- ("gtype" ,sbcl-gtype)
- ("iterate" ,sbcl-iterate)
- ("lisp-namespace" ,sbcl-lisp-namespace)
- ("specialized-function" ,sbcl-specialized-function)
- ("trivia" ,sbcl-trivia)
- ("type-r" ,sbcl-type-r)))
+ (list sbcl-alexandria
+ sbcl-cl-randist
+ sbcl-constantfold
+ sbcl-float-features
+ sbcl-function-cache
+ sbcl-gtype
+ sbcl-iterate
+ sbcl-lisp-namespace
+ sbcl-specialized-function
+ sbcl-trivia
+ sbcl-type-r))
(home-page "https://numcl.github.io/numcl/")
(synopsis "Numpy clone in Common Lisp")
(description