me
/
guix
Archived
1
0
Fork 0

gnu: r-r-cache: Update to 0.15.0.

* gnu/packages/statistics.scm (r-r-cache): Update to 0.15.0.
[arguments]: Add build phase "set-HOME".
master
Ricardo Wurmus 2021-05-04 07:13:23 +02:00
parent 3ff0d6f797
commit 2eab3898e1
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 2 deletions

View File

@ -3569,15 +3569,20 @@ developing R packages.")
(define-public r-r-cache (define-public r-r-cache
(package (package
(name "r-r-cache") (name "r-r-cache")
(version "0.14.0") (version "0.15.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (cran-uri "R.cache" version)) (uri (cran-uri "R.cache" version))
(sha256 (sha256
(base32 (base32
"1n8n5ihkryrbxv630dwhz4r048nyv676qd3i9f5z5fa04hvlxbqq")))) "09pipn1974ivjh4sm3n5fjlh31rilf87p30qwq7y25vriyqd7d5d"))))
(properties `((upstream-name . "R.cache"))) (properties `((upstream-name . "R.cache")))
(build-system r-build-system) (build-system r-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-HOME
(lambda _ (setenv "HOME" "/tmp"))))))
(propagated-inputs (propagated-inputs
`(("r-digest" ,r-digest) `(("r-digest" ,r-digest)
("r-r-methodss3" ,r-r-methodss3) ("r-r-methodss3" ,r-r-methodss3)