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 e67dfa0f8b gnu: sbcl-cl-csv: Refactor to modern style.
e67dfa0f8b is described below
commit e67dfa0f8bfba720b918c2ddfc45f985de48ec46
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 01:34:00 2026 -0500
gnu: sbcl-cl-csv: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-cl-csv)[inputs]: Refactor to modern style.
Change-Id: I93c10ed2b3251738656da731ef1dcb06183b5a20
---
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 d580cbb049..353629a63d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5665,9 +5665,9 @@ portability, and boilerplate reduction in CSS.")
;; See: https://github.com/AccelerationNet/cl-csv/pull/34
`(#:tests? #f))
(inputs
- `(("alexandria" ,sbcl-alexandria)
- ("cl-interpol" ,sbcl-cl-interpol)
- ("iterate" ,sbcl-iterate)))
+ (list sbcl-alexandria
+ sbcl-cl-interpol
+ sbcl-iterate))
(native-inputs
(list sbcl-lisp-unit2))
(synopsis "Common lisp library for comma-separated values")