diff options
| author | jgart <jgart@dismail.de> | 2026-01-30 03:00:51 -0500 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2026-01-30 03:01:41 -0500 |
| commit | b2e97fa744ca42cadcf17995cd908110caa5c9d9 (patch) | |
| tree | fb93203b18a636c588add6b73b1ab6f0e4503d6d /gnu | |
| parent | 220444e5f3858730d9d19501abc4c45b4d21ede6 (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 16 |
1 files 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 |
