diff options
author | Timo Wilken <guix@twilken.net> | 2025-05-27 23:02:51 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2025-05-28 15:50:54 +0200 |
commit | ee8144743dedc67c4d92f5f900a539ef328b2e21 (patch) | |
tree | fefb8020dc26824c94596390a7f8f9d7a9c7affe | |
parent | 30da61ea9da4ff326731a45820ac65184afff8b0 (diff) |
gnu: cl-woo: Update to 0.12.0-2.7f5219c.
* gnu/packages/lisp-xyz.scm (sbcl-woo): Update to 0.12.0-2.7f5219c.
[inputs]: Add sbcl-cl+ssl and sbcl-trivial-mimes.
Closes: #100
Change-Id: I794cd206e946f36337ac4fbc33fd5b4d98bfff71
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 2848fed128..83538d7176 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -32448,8 +32448,8 @@ like-named macro that catches the SIGINT signal.") (sbcl-package->ecl-package sbcl-with-user-abort)) (define-public sbcl-woo - (let ((commit "fba3567be95ed6e782d98a4c1477d3a74b8ad124") - (revision "1")) + (let ((commit "7f5219c55d49190f5ae17b123a8729b31c5d706e") + (revision "2")) (package (name "sbcl-woo") (version (git-version "0.12.0" revision commit)) @@ -32461,7 +32461,7 @@ like-named macro that catches the SIGINT signal.") (commit commit))) (file-name (git-file-name "woo" version)) (sha256 - (base32 "06f95x8s8v523gxmrkn9wwgw2pvc3bc66znbgrzhqb30y4aar5v5")))) + (base32 "0nhxlb1qhkl20vknm44gx0cq5cks33rcljczfhgbnmpkzrdpdrrl")))) (build-system asdf-build-system/sbcl) (arguments ;; FIXME: Tests fail because they try to compile clack-test: @@ -32481,6 +32481,7 @@ like-named macro that catches the SIGINT signal.") (list sbcl-alexandria sbcl-bordeaux-threads sbcl-cffi + sbcl-cl+ssl sbcl-cl-speedy-queue ;; Required for ecl build sbcl-clack sbcl-fast-http @@ -32491,6 +32492,7 @@ like-named macro that catches the SIGINT signal.") sbcl-smart-buffer sbcl-static-vectors sbcl-swap-bytes + sbcl-trivial-mimes sbcl-trivial-utf-8 sbcl-vom)) (home-page "https://github.com/fukamachi/woo") |