diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-21 21:39:43 +0000 | 
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-21 21:57:34 +0000 | 
| commit | 05e860a90a1a2c6a4720a59d79a1a99b90b2d926 (patch) | |
| tree | 41ff397755b447c0e590db60bac9eda31878152e /gnu | |
| parent | 0dea7342f26dc251788839a1942338fc62d4f5f5 (diff) | |
gnu: cl-woo: Remove input labels.
* gnu/packages/lisp-xyz.scm (sbcl-woo): Remove input labels.
Change-Id: I5bf9f8d8faaa90e237d11d01d3102533f7318801
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 33 | 
1 files changed, 16 insertions, 17 deletions
| diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 40a7268556..aafc375d5f 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -21996,24 +21996,23 @@ Common Lisp.")         ;; clack-test and dexador.         `(#:tests? #f))        (native-inputs -       `(("clack" ,sbcl-clack) -         ("rove" ,sbcl-rove))) +       (list sbcl-clack sbcl-rove))        (inputs -       `(("alexandria" ,sbcl-alexandria) -         ("bordeaux-threads" ,sbcl-bordeaux-threads) -         ("cffi" ,sbcl-cffi) -         ("cl-speedy-queue" ,sbcl-cl-speedy-queue) ;; Required for ecl build -         ("clack-socket" ,sbcl-clack) -         ("fast-http" ,sbcl-fast-http) -         ("fast-io" ,sbcl-fast-io) -         ("lev" ,sbcl-lev) -         ("quri" ,sbcl-quri) -         ("rove" ,sbcl-rove) -         ("smart-buffer" ,sbcl-smart-buffer) -         ("static-vectors" ,sbcl-static-vectors) -         ("swap-bytes" ,sbcl-swap-bytes) -         ("trivial-utf-8" ,sbcl-trivial-utf-8) -         ("vom" ,sbcl-vom))) +       (list sbcl-alexandria +             sbcl-bordeaux-threads +             sbcl-cffi +             sbcl-cl-speedy-queue ;; Required for ecl build +             sbcl-clack +             sbcl-fast-http +             sbcl-fast-io +             sbcl-lev +             sbcl-quri +             sbcl-rove +             sbcl-smart-buffer +             sbcl-static-vectors +             sbcl-swap-bytes +             sbcl-trivial-utf-8 +             sbcl-vom))        (home-page "https://github.com/fukamachi/woo")        (synopsis "Non-blocking HTTP server based on libev")        (description | 
