guix-commits
[Top][All Lists]
Advanced

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

02/18: gnu: Add r-gsl.


From: guix-commits
Subject: 02/18: gnu: Add r-gsl.
Date: Mon, 7 Jan 2019 12:44:12 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a50abb3614be087dbc8bc541f27b367db4260fc5
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jan 4 17:28:52 2019 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c7cd95f..899db77 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -8467,3 +8467,24 @@ related functions.")
 random number generation for (skew) stable distributions, using the
 parametrizations of Nolan.")
     (license license:gpl2+)))
+
+(define-public r-gsl
+  (package
+    (name "r-gsl")
+    (version "1.9-10.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "gsl" version))
+       (sha256
+        (base32
+         "00isw2iha5af4s7rr8svqka9mkl9l26l8h2rnk4r7fkhh7fc97sg"))))
+    (build-system r-build-system)
+    (inputs
+     `(("gsl" ,gsl)))
+    (home-page "https://cran.r-project.org/web/packages/gsl";)
+    (synopsis "Wrapper for the GNU Scientific Library")
+    (description
+     "This package provides an R wrapper for the special functions and quasi
+random number generators of the GNU Scientific Library.")
+    (license license:gpl2+)))



reply via email to

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