guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b2e97fa744ca42cadcf17995cd908110caa5c9d9
Author: jgart <[email protected]>
AuthorDate: Fri Jan 30 03:00:51 2026 -0500
gnu: sbcl-cl-locale: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-cl-locale): Refactor to modern style.
[native-inputs]: Refactor them.
[inputs]: Refactor them.
Change-Id: Ib0153ed2160c97fd448cb2a14fd6d28d8c28d86c
---
gnu/packages/lisp-xyz.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1871ecf803..4ffe77117f 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -8108,8 +8108,8 @@ For a YAML parser and emitter using this, check out
cl-yaml.")
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/fukamachi/cl-locale")
- (commit commit)))
+ (url "https://github.com/fukamachi/cl-locale")
+ (commit commit)))
(file-name (git-file-name "cl-locale" version))
(sha256
(base32 "1rhannhpsw1yg1fpflam483a3w9qb1izgyvmnmiddv3dn4qsmn9p"))))
@@ -8117,13 +8117,13 @@ For a YAML parser and emitter using this, check out
cl-yaml.")
(arguments
'(#:asd-systems '("cl-locale-test" "cl-locale")))
(native-inputs
- `(("prove" ,sbcl-prove)
- ("flexi-streams" ,sbcl-flexi-streams)))
+ (list sbcl-prove
+ sbcl-flexi-streams))
(inputs
- `(("anaphora" ,sbcl-anaphora)
- ("arnesi" ,sbcl-arnesi)
- ("cl-annot" ,sbcl-cl-annot)
- ("cl-syntax" ,sbcl-cl-syntax)))
+ (list sbcl-anaphora
+ sbcl-arnesi
+ sbcl-cl-annot
+ sbcl-cl-syntax))
(home-page "https://github.com/fukamachi/cl-locale")
(synopsis "Internalization library for Common Lisp")
(description