me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-float-features.

* gnu/packages/lisp-xyz.scm (sbcl-float-features,
  cl-float-features, ecl-float-features): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
Konrad Hinsen 2020-02-10 17:30:07 +01:00 committed by Guillaume Le Vaillant
parent 281537f47b
commit 41884bfa5b
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 34 additions and 0 deletions

View File

@ -10273,3 +10273,37 @@ generation functions from the GSL library.")
(define-public ecl-cl-randist
(sbcl-package->ecl-package sbcl-cl-randist))
(define-public sbcl-float-features
(package
(name "sbcl-float-features")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Shinmera/float-features.git")
(commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
(file-name (git-file-name name version))
(sha256
(base32
"0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
(build-system asdf-build-system/sbcl)
(synopsis "Common Lisp IEEE float portability library")
(description
"Portability library for IEEE float features that are not
covered by the Common Lisp standard.")
(home-page "https://github.com/Shinmera/float-features")
(license license:zlib)
(inputs
`(("documentation-utils" ,sbcl-documentation-utils)))
(arguments
`(#:asd-system-name "float-features"
#:asd-file "float-features.asd"
#:tests? #f))))
(define-public cl-float-features
(sbcl-package->cl-source-package sbcl-float-features))
(define-public ecl-float-features
(sbcl-package->ecl-package sbcl-float-features))