guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3bb655d9037690ff631ab10226efb0c1015e5e09
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 03:03:24 2026 -0500
gnu: sbcl-cl-random-forest: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-cl-random-forest): Refactor to modern
style.
[native-inputs]: Refactor them.
[inputs]: Refactor them.
Change-Id: I7ab53dffec8659fe0c9502924f657c384f825b77
---
gnu/packages/lisp-xyz.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4aa693ac22..1567b5b2cf 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9719,13 +9719,13 @@ density, distribution and quantiles for these
distributions.")
"0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
(build-system asdf-build-system/sbcl)
(native-inputs
- `(("prove" ,sbcl-prove)
- ("trivial-garbage" ,sbcl-trivial-garbage)))
+ (list sbcl-prove
+ sbcl-trivial-garbage))
(inputs
- `(("alexandria" ,sbcl-alexandria)
- ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
- ("cl-online-learning" ,sbcl-cl-online-learning)
- ("lparallel" ,sbcl-lparallel)))
+ (list sbcl-alexandria
+ sbcl-cl-libsvm-format
+ sbcl-cl-online-learning
+ sbcl-lparallel))
(arguments
`(#:tests? #f)) ; The tests download data from the Internet
(synopsis "Random Forest and Global Refinement for Common Lisp")