gnu: Add r-cubature.

* gnu/packages/cran.scm (r-cubature): New variable.
This commit is contained in:
Ricardo Wurmus 2018-03-02 23:06:41 +01:00
parent 6615a36421
commit d32e572489
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -2568,3 +2568,28 @@ chaotic time series analysis.")
"This package provides unit root and cointegration tests encountered in "This package provides unit root and cointegration tests encountered in
applied econometric analysis.") applied econometric analysis.")
(license license:gpl2+))) (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
@code{hcubature} 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+))))