guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 69c667d5792a896c404a5783f643ca538475bb3e
Author: jgart <[email protected]>
AuthorDate: Thu Jan 29 15:08:25 2026 -0500
gnu: sbcl-fast-http: Refactor to modern style.
* gnu/packages/lisp-xyz.scm (sbcl-fast-http)[native-inputs]: Refactor to
modern style.
Change-Id: I62beb81489316dba98ef048984ed8e130832b2b8
---
gnu/packages/lisp-xyz.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 87eb3146f6..56ed520d6d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16545,8 +16545,8 @@ perform a variety of optimizations.")
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/fukamachi/fast-http")
- (commit commit)))
+ (url "https://github.com/fukamachi/fast-http")
+ (commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
@@ -16554,8 +16554,8 @@ perform a variety of optimizations.")
(arguments
'(#:asd-systems '("fast-http-test" "fast-http")))
(native-inputs
- `(("sbcl-prove" ,sbcl-prove)
- ("cl-syntax" ,sbcl-cl-syntax)))
+ (list sbcl-prove
+ sbcl-cl-syntax))
(inputs
(list sbcl-alexandria sbcl-proc-parse sbcl-xsubseq
sbcl-smart-buffer sbcl-cl-utilities))