guix-commits
[Top][All Lists]
Advanced

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

13/19: gnu: Add r-cubature.


From: Ricardo Wurmus
Subject: 13/19: gnu: Add r-cubature.
Date: Fri, 2 Mar 2018 17:15:51 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit d32e57248954d20ef892ee9fbc3bae9afa1299d1
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Mar 2 23:06:41 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1c8b9ba..f7b657b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2568,3 +2568,28 @@ chaotic time series analysis.")
      "This package provides unit root and cointegration tests encountered in
 applied econometric analysis.")
     (license license:gpl2+)))
+
+(define-public r-cubature
+  (package
+    (name "r-cubature")
+    (version "1.3-11")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "cubature" version))
+       (sha256
+        (base32
+         "06f6gsvbb732p80r6hxvzh4ik546icxfvx21dyh65ypmw3kgm64k"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-rcpp" ,r-rcpp)))
+    (home-page "https://github.com/bnaras/cubature";)
+    (synopsis "Adaptive multivariate integration over hypercubes")
+    (description
+     "This package is an R wrapper around the cubature C library for adaptive
+multivariate integration over hypercubes.  This version provides both
address@hidden and @code{pcubature} routines in addition to a vector
+interface.")
+    ;; The included cubature C library is released under GPLv2+, but the
+    ;; wrapper declares the license to be GPLv3+.
+    (license (list license:gpl2+ license:gpl3+))))



reply via email to

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