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.
master
Ricardo Wurmus 2018-05-31 12:32:25 +02:00
parent a8b4677b7c
commit 6034a62a1b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 7 deletions

View File

@ -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