guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/14: gnu: Add sbcl-ieee-floats.


From: guix-commits
Subject: 13/14: gnu: Add sbcl-ieee-floats.
Date: Wed, 26 Jun 2019 07:06:20 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 6ac69aae7fff06fd97060d9e0f462a09f2c07cde
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Jun 26 12:50:58 2019 +0200

    gnu: Add sbcl-ieee-floats.
    
    * gnu/packages/lisp.scm (sbcl-ieee-floats): New variable.
---
 gnu/packages/lisp.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index fa592c6..d7f3f01 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5881,3 +5881,28 @@ and @code{kqueue(2)}), a pathname library and 
file-system utilities.")
     (arguments
      (substitute-keyword-arguments (package-arguments sbcl-iolib)
        ((#:asd-system-name _) "iolib/sockets")))))
+
+(define-public sbcl-ieee-floats
+  (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
+        (revision "1"))
+    (package
+      (name "sbcl-ieee-floats")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "20170924" revision commit))
+      (home-page "https://github.com/marijnh/ieee-floats/";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
+      (native-inputs
+       `(("fiveam" ,sbcl-fiveam)))
+      (synopsis "IEEE 754 binary representation for floats in Common Lisp")
+      (description "This is a Common Lisp library that allows to convert
+floating point values to IEEE 754 binary representation.")
+      (license license:bsd-3))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]