diff options
author | Charlie Ritter <chewzerita@posteo.net> | 2018-03-12 10:13:04 -0400 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-03-26 21:43:57 +0200 |
commit | 10487c30bca4047a07202ffea385e01e52ed6a51 (patch) | |
tree | 82767a66819862d2699f5306c55eac93b3495cf3 | |
parent | d7637e5ed8463d0c1ef84b1a6ef5b45205fdba26 (diff) | |
download | guix-10487c30bca4047a07202ffea385e01e52ed6a51.tar.gz |
gnu: Add r-callr.
* gnu/packages/cran.scm (r-callr): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
-rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6bf3955fd6..b2db1af3fb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -37,6 +37,32 @@ #:use-module (gnu packages statistics) #:use-module (gnu packages web)) +(define-public r-callr + (package + (name "r-callr") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "callr" version)) + (sha256 + (base32 + "0m51p39vfwldxv6h8x4y9w3laf8q9bldhfqhlcrlx3xhy3irb1bp")))) + (build-system r-build-system) + (propagated-inputs + `(("r-assertthat" ,r-assertthat) + ("r-crayon" ,r-crayon) + ("r-debugme" ,r-debugme) + ("r-r6" ,r-r6) + ("r-testthat" ,r-testthat))) + (home-page "https://github.com/r-lib/callr#readme") + (synopsis "Call R from R") + (description + "It is sometimes useful to perform a computation in a separate R process, +without affecting the current R process at all. This packages does exactly +that.") + (license license:expat))) + (define-public r-readxl (package (name "r-readxl") |