diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-02-22 18:29:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-02-22 18:48:30 +0100 |
commit | 630a059b1b66cdaf9a3e722fd6b4b20fd1973514 (patch) | |
tree | 43ca00e259d06565344834b15cf4b1c3fb1974aa /gnu/packages/cran.scm | |
parent | 9f02ad0cb06b16b67928f30211b0da8fc58d2f37 (diff) | |
download | guix-630a059b1b66cdaf9a3e722fd6b4b20fd1973514.tar guix-630a059b1b66cdaf9a3e722fd6b4b20fd1973514.tar.gz |
gnu: Add r-rcppxptrutils.
* gnu/packages/cran.scm (r-rcppxptrutils): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 08d6ab7619..2ce20880e0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3400,6 +3400,27 @@ computing (numerical integration, optimization, etc.) and their integration with @code{Rcpp}.") (license license:gpl2+))) +(define-public r-rcppxptrutils + (package + (name "r-rcppxptrutils") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "RcppXPtrUtils" version)) + (sha256 + (base32 "0jh64c46gp99d2nsih14vx34pamc8i7gkmiy2nj94rx3sxq62yh5")))) + (properties `((upstream-name . "RcppXPtrUtils"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp)) + (home-page "https://github.com/Enchufa2/RcppXPtrUtils") + (synopsis "XPtr add-ons for Rcpp") + (description + "This package provides the means to compile user-supplied C++ functions +with Rcpp and retrieve an @code{XPtr} that can be passed to other C++ +components.") + (license license:expat))) + (define-public r-bindr (package (name "r-bindr") |