guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add computable-reals.


From: guix-commits
Subject: branch master updated: gnu: Add computable-reals.
Date: Thu, 11 Mar 2021 15:12:15 -0500

This is an automated email from the git hooks/post-receive script.

ambrevar pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6dda223  gnu: Add computable-reals.
6dda223 is described below

commit 6dda22363166bc67e8846714cc947918692202c5
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Thu Mar 11 21:11:51 2021 +0100

    gnu: Add computable-reals.
    
    * gnu/packages/lisp-xyz.scm (cl-computable-reals, ecl-computable-reals,
    sbcl-computable-reals): New variables.
---
 gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e151853..5682dae 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -15314,3 +15314,31 @@ time, etc.")
 
 (define-public cl-fof
   (sbcl-package->cl-source-package sbcl-fof))
+
+(define-public sbcl-computable-reals
+  (let ((commit "fdc73d75e79d0a4ce6d01c822c950ae2eb137d39"))
+    (package
+      (name "sbcl-computable-reals")
+      (version (git-version "1.1.0" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/stylewarning/computable-reals";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0f12axi53x14l12dgf4a1lfq3p1fx7fh7sjfc0db3lk88ph9qfwl"))))
+      (build-system asdf-build-system/sbcl)
+      (home-page "https://github.com/stylewarning/computable-reals";)
+      (synopsis "Arbitrary-precision, re-computing real-numbers in Common 
Lisp")
+      (description
+       "This library provides arbitrary precision (floating point) real
+numbers in Common Lisp.")
+      (license license:bsd-3))))
+
+(define-public ecl-computable-reals
+  (sbcl-package->ecl-package sbcl-computable-reals))
+
+(define-public cl-computable-reals
+  (sbcl-package->cl-source-package sbcl-computable-reals))



reply via email to

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