diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-05-31 12:31:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-05-31 13:21:31 +0200 |
commit | a80606308a1b66de792da2d35e66cfb455c90206 (patch) | |
tree | f09f9d02d390b0611529b008634c1e0dbef23da6 /gnu | |
parent | 9944399ae3f7730dc75bb28be24cb0ad0d984aa3 (diff) | |
download | guix-a80606308a1b66de792da2d35e66cfb455c90206.tar guix-a80606308a1b66de792da2d35e66cfb455c90206.tar.gz |
gnu: r-processx: Update to 3.1.0.
* gnu/packages/cran.scm (r-processx): Update to 3.1.0.
[propagated-inputs]: Remove r-debugme; add r-testthat.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7ca2f11d41..e5e5af839e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2417,20 +2417,20 @@ constants, and control debugging of packages via environment variables.") (define-public r-processx (package (name "r-processx") - (version "2.0.0.1") + (version "3.1.0") (source (origin (method url-fetch) (uri (cran-uri "processx" version)) (sha256 (base32 - "0yw23lp9xjvbpswzghkmjiayw7p19hbvmgv58k3i6b8g5nav4qcg")))) + "0wjr3cqwvnjxbvln25szffmkns5w0xysivdjr6chxap4nh515b0i")))) (build-system r-build-system) (propagated-inputs `(("r-assertthat" ,r-assertthat) ("r-crayon" ,r-crayon) - ("r-debugme" ,r-debugme) - ("r-r6" ,r-r6))) + ("r-r6" ,r-r6) + ("r-testthat" ,r-testthat))) (home-page "https://github.com/r-lib/processx3") (synopsis "Execute and control system processes") (description |