rekado pushed a commit to branch master
in repository guix.
commit 6034a62a1b11f8dd63ade6e0dac2e32727150ab0
Author: Ricardo Wurmus <[email protected]>
Date: Thu May 31 12:32:25 2018 +0200
gnu: r-callr: Update to 2.0.4.
* gnu/packages/cran.scm (r-callr): Update to 2.0.4.
[propagated-inputs]: Add r-processx; remove r-assertthat, r-crayon,
r-debugme,
and r-testthat.
---
gnu/packages/cran.scm | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8758515..47b1f0a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -169,21 +169,18 @@ such as copy/paste from an R session.")
(define-public r-callr
(package
(name "r-callr")
- (version "2.0.3")
+ (version "2.0.4")
(source
(origin
(method url-fetch)
(uri (cran-uri "callr" version))
(sha256
(base32
- "1k3mflgn10hcvy74y4pbigpv74zb66fz1phfd3c8isqmn88xbxzi"))))
+ "1053qqq632z94pqq2v5dynjpgyv1b1c8zvidmcllw7zn8zha8gqf"))))
(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)))
+ `(("r-r6" ,r-r6)
+ ("r-processx" ,r-processx)))
(home-page "https://github.com/r-lib/callr#readme")
(synopsis "Call R from R")
(description