diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2023-02-24 11:39:57 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-02-24 15:50:34 +0100 |
commit | 3639a25f191c261a0b2a53b85de8f14ad2cff6f9 (patch) | |
tree | 5f1b48db0187d17fd6d30374645eac81c16aa7c8 | |
parent | 5eea067bd2eeb7ee887aa7ba026bfa233bc26057 (diff) | |
download | guix-3639a25f191c261a0b2a53b85de8f14ad2cff6f9.tar.gz |
gnu: cl-fast-io: Update to 1.0.0-3.a4c5ad6.
* gnu/packages/lisp-xyz.scm (sbcl-fast-io): Update to 1.0.0-3.a4c5ad6. [arguments]: Enable tests.
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 476c29180e..2bf605ba8d 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -5899,8 +5899,8 @@ Only minimal changes required to make your CLOS objects serializable.") (sbcl-package->ecl-package sbcl-marshal)) (define-public sbcl-fast-io - (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b") - (revision "2")) + (let ((commit "a4c5ad600425842e8b6233b1fa22610ffcd874c3") + (revision "3")) (package (name "sbcl-fast-io") (version (git-version "1.0.0" revision commit)) @@ -5910,15 +5910,10 @@ Only minimal changes required to make your CLOS objects serializable.") (uri (git-reference (url "https://github.com/rpav/fast-io") (commit commit))) - (file-name (git-file-name name version)) + (file-name (git-file-name "cl-fast-io" version)) (sha256 - (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n")))) + (base32 "0wh02yagbqahy9z6787jz5ggpagvr18qd0z13wvwq1vjf8xd2530")))) (build-system asdf-build-system/sbcl) - (arguments - ;; Error while trying to load definition for system fast-io-test from - ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP - ;; is undefined. - '(#:tests? #f)) (native-inputs (list sbcl-fiveam sbcl-checkl)) (inputs |