3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: r-foreach: Update to 1.5.0.

* gnu/packages/statistics.scm (r-foreach): Update to 1.5.0.
[native-inputs]: Add r-knitr.
This commit is contained in:
Ricardo Wurmus 2020-04-01 11:10:29 +02:00
parent 53477d9786
commit 383895dde4
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3066,18 +3066,20 @@ data.")
(define-public r-foreach
(package
(name "r-foreach")
(version "1.4.8")
(version "1.5.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "foreach" version))
(sha256
(base32
"1xwf5l2fw62w80ji3dvgcc6m9m4s6zygkhi84ypb0gv0ppjffg5c"))))
"0584nv49x8d8m1cak5drb54sxs3y594gd521kjsdwk4c849sgy8s"))))
(build-system r-build-system)
(propagated-inputs
`(("r-codetools" ,r-codetools)
("r-iterators" ,r-iterators)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://cran.r-project.org/web/packages/foreach")
(synopsis "Foreach looping construct for R")
(description