rekado pushed a commit to branch master
in repository guix.
commit 5a0fb78edb3b143924f49269a35018c6b1864118
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Apr 1 11:11:59 2020 +0200
gnu: r-fs: Update to 1.4.0.
* gnu/packages/cran.scm (r-fs): Update to 1.4.0.
[propagated-inputs]: Remove r-rcpp.
[native-inputs]: Add r-knitr.
---
gnu/packages/cran.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index bf13071..346380c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -8716,19 +8716,18 @@ back to file after modifications.")
(define-public r-fs
(package
(name "r-fs")
- (version "1.3.2")
+ (version "1.4.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "fs" version))
(sha256
(base32
- "1w30bflx4d7a6f3dn96bf7s7v6aqpvz2yzzxal6qz9jyhb16bxaz"))))
+ "1ishdxrxy88w1lrn657a573wdra5v7xf1yfa1c4kss07rlynwrj7"))))
(build-system r-build-system)
- (propagated-inputs
- `(("r-rcpp" ,r-rcpp)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("r-knitr" ,r-knitr)))
(home-page "https://fs.r-lib.org")
(synopsis "Cross-platform file system operations based on libuv")
(description