diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 22:47:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 22:47:00 +0100 |
commit | 4fb35ebd8d1845dbabbbbb04b4ae332513e6e6c5 (patch) | |
tree | c7fc79e88bdfedbe410e63e43c86468cc8f5e7ce /gnu | |
parent | 373cef0a0c2be5e7496f7764447417398abe02ff (diff) | |
download | patches-4fb35ebd8d1845dbabbbbb04b4ae332513e6e6c5.tar patches-4fb35ebd8d1845dbabbbbb04b4ae332513e6e6c5.tar.gz |
gnu: Add r-rcppgsl.
* gnu/packages/cran.scm (r-rcppgsl): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f5ce5bc10f..552df6dd3f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7083,3 +7083,33 @@ series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>), and related methods.") (license license:gpl2+))) + +(define-public r-rcppgsl + (package + (name "r-rcppgsl") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (cran-uri "RcppGSL" version)) + (sha256 + (base32 + "16pdapq31729db53agnb48jkvdm97167n3bigy5zazc3q3isis1m")))) + (properties `((upstream-name . "RcppGSL"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rcpp" ,r-rcpp) + ("gsl" ,gsl))) + (native-inputs + `(("r-knitr" ,r-knitr))) ; for vignettes + (home-page "https://cran.r-project.org/web/packages/RcppGSL/") + (synopsis "Rcpp integration for GSL vectors and matrices") + (description + "The GNU Scientific Library (or GSL) is a collection of numerical +routines for scientific computing. It is particularly useful for C and C++ +programs as it provides a standard C interface to a wide range of mathematical +routines. There are over 1000 functions in total with an extensive test +suite. The RcppGSL package provides an easy-to-use interface between GSL data +structures and R using concepts from Rcpp which is itself a package that eases +the interfaces between R and C++.") + (license license:gpl2+))) |