1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 12:30:38 +02:00

gnu: cl-float-features: Update to 1.0.0-2.c1f86ae.

* gnu/packages/lisp-xyz.scm (sbcl-float-features): Update to 1.0.0-2.c1f86ae.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Charles 2021-12-02 22:26:56 -06:00 committed by Guillaume Le Vaillant
parent b7aaf6c418
commit 6e0c4a28b9
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -9378,19 +9378,20 @@ generation functions from the GSL library.")
(sbcl-package->ecl-package sbcl-cl-randist)) (sbcl-package->ecl-package sbcl-cl-randist))
(define-public sbcl-float-features (define-public sbcl-float-features
(let ((commit "c1f86aea91cfaa3aa59799162be23ef8a12b199d")
(revision "2"))
(package (package
(name "sbcl-float-features") (name "sbcl-float-features")
(version "1.0.0") (version (git-version "1.0.0" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/Shinmera/float-features") (url "https://github.com/Shinmera/float-features")
(commit "d3ef60181635b0849aa28cfc238053b7ca4644b0"))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name "float-features" version))
(sha256 (sha256
(base32 (base32 "0vqm9xhn2i4vbjrxnp4hr1l3lydjflhjykdz6cmqg2j48c5kh3g3"))))
"0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(synopsis "Common Lisp IEEE float portability library") (synopsis "Common Lisp IEEE float portability library")
(description (description
@ -9401,7 +9402,7 @@ covered by the Common Lisp standard.")
(inputs (inputs
`(("documentation-utils" ,sbcl-documentation-utils))) `(("documentation-utils" ,sbcl-documentation-utils)))
(arguments (arguments
`(#:tests? #f)))) `(#:tests? #f)))))
(define-public cl-float-features (define-public cl-float-features
(sbcl-package->cl-source-package sbcl-float-features)) (sbcl-package->cl-source-package sbcl-float-features))