gnu: cl-clack: Refresh package style.

* gnu/packages/lisp-xyz.scm (sbcl-clack):
[arguments]: Move above inputs.
[inputs]: Remove labels.

Change-Id: Ie4e8e657b656ef3c80a446f1d7ad2b90fc693ed4
This commit is contained in:
Sharlatan Hellseher 2024-03-21 21:36:18 +00:00
parent b130647aef
commit 0dea7342f2
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7681,21 +7681,21 @@ (define-public sbcl-clack
(sha256
(base32 "0sfmvqmsg9z13x0v77448rpdqgyprdq739nsbrjw9a28hv9jmkg9"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("alexandria" ,sbcl-alexandria)
("bordeaux-threads" ,sbcl-bordeaux-threads)
("cl-fastcgi" ,sbcl-cl-fastcgi)
("flexi-streams" ,sbcl-flexi-streams)
("hunchentoot" ,sbcl-hunchentoot)
("lack" ,sbcl-lack)
("split-sequence" ,sbcl-split-sequence)
("usocket" ,sbcl-usocket)
("quri" ,sbcl-quri)))
(arguments
'(#:asd-systems '("clack"
"clack-handler-fcgi"
"clack-socket"
"clack-handler-hunchentoot")))
(inputs
(list sbcl-alexandria
sbcl-bordeaux-threads
sbcl-cl-fastcgi
sbcl-flexi-streams
sbcl-hunchentoot
sbcl-lack
sbcl-quri
sbcl-split-sequence
sbcl-usocket))
(home-page "https://github.com/fukamachi/clack")
(synopsis "Web Application Environment for Common Lisp")
(description