guix-commits
[Top][All Lists]
Advanced

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

25/41: gnu: Add r-rmpfr.


From: guix-commits
Subject: 25/41: gnu: Add r-rmpfr.
Date: Wed, 9 Jan 2019 09:44:56 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a536c7c9ad78ce95fb8dad61114c40c57b3c0be8
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Jan 9 15:27:27 2019 +0100

    gnu: Add r-rmpfr.
    
    * gnu/packages/cran.scm (r-rmpfr): New variable.
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 930a892..f305f2b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -9460,3 +9460,29 @@ rationals, prime number tests, matrix computation), 
\"arithmetic without
 limitations\" using the GNU Multiple Precision library.")
     ;; Any version of the GPL.
     (license license:gpl3+)))
+
+(define-public r-rmpfr
+  (package
+    (name "r-rmpfr")
+    (version "0.7-1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "Rmpfr" version))
+       (sha256
+        (base32
+         "0172px5ryi7i0gyyin9z2bzif8vnj292gk0s1w5p3c12g9hj2c4v"))))
+    (properties `((upstream-name . "Rmpfr")))
+    (build-system r-build-system)
+    (inputs
+     `(("mpfr" ,mpfr)))
+    (propagated-inputs
+     `(("r-gmp" ,r-gmp)))
+    (home-page "http://rmpfr.r-forge.r-project.org/";)
+    (synopsis "R bindings to the MPFR library")
+    (description
+     "This package supports arithmetic (via S4 classes and methods) for
+arbitrary precision floating point numbers, including transcendental
+functions.  To this end, the package interfaces with the @dfn{Multiple
+Precision Floating-Point Reliable} (MPFR) library.")
+    (license license:gpl2+)))



reply via email to

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