diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-09-18 13:29:56 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-09-18 14:36:43 +0200 |
commit | eb0e62aeb044eb5b9fee6cc10a2674bae24845e1 (patch) | |
tree | 47929e8500c8c69b6e21d9fe6a8d12f94cd7f335 /gnu/packages/lisp-xyz.scm | |
parent | d4a0b9b59e977e1ebc4fc37bb7fde38db8b438a3 (diff) | |
download | guix-eb0e62aeb044eb5b9fee6cc10a2674bae24845e1.tar guix-eb0e62aeb044eb5b9fee6cc10a2674bae24845e1.tar.gz |
gnu: cl-uax-15: Improve package style.
* gnu/packages/lisp-xyz.scm (sbcl-uax-15)[inputs]: Remove labels.
Change-Id: Ic0ce34c42ed3b2ffd17c155d46ff120751944af3
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 1307d1fb0c..ee48068e5a 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -30221,18 +30221,16 @@ user.") (uri (git-reference (url "https://github.com/sabracrolleton/uax-15") (commit (string-append "v" version)))) - (file-name (git-file-name "uax-15" version)) + (file-name (git-file-name "cl-uax-15" version)) (sha256 (base32 "0kkr3sw3hqsb8ciyn8dzb1cfz260fk1y39vydc98gsfrn6nqh3vw")))) (build-system asdf-build-system/sbcl) (arguments - `(#:asd-systems - '("uax-15"))) + `(#:asd-systems '("uax-15"))) (native-inputs (list sbcl-parachute)) (inputs - `(("cl-ppcre" ,sbcl-cl-ppcre) - ("split-sequence" ,sbcl-split-sequence))) + (list sbcl-cl-ppcre sbcl-split-sequence)) (home-page "https://github.com/sabracrolleton/uax-15") (synopsis "Common Lisp implementation of unicode normalization functions") (description |