me
/
guix
Archived
1
0
Fork 0

gnu: Add r-rcppnumerical.

* gnu/packages/cran.scm (r-rcppnumerical): New variable.
master
Roel Janssen 2021-05-26 15:37:43 +02:00
parent d3dcb8c736
commit f5282a1738
No known key found for this signature in database
GPG Key ID: CBD0CD5138C19AFC
1 changed files with 21 additions and 0 deletions

View File

@ -2989,6 +2989,27 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
safely be interrupted from R.")
(license license:expat)))
(define-public r-rcppnumerical
(package
(name "r-rcppnumerical")
(version "0.4-0")
(source (origin
(method url-fetch)
(uri (cran-uri "RcppNumerical" version))
(sha256
(base32
"1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
(build-system r-build-system)
(propagated-inputs
`(("r-rcpp" ,r-rcpp)
("r-rcppeigen" ,r-rcppeigen)))
(home-page "https://github.com/yixuan/RcppNumerical")
(synopsis"Numerical computing libraries integration with @code{Rcpp}")
(description "This package provides a collection of libraries for numerical
computing (numerical integration, optimization, etc.) and their integration
with @code{Rcpp}.")
(license license:gpl2+)))
(define-public r-bindr
(package
(name "r-bindr")