1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: r-fs: Update to 2.0.1.

* gnu/packages/cran.scm (r-fs): Update to 2.0.1.
[properties]: Record updater-extra-inputs.
[inputs]: Add libuv.

Change-Id: Ie89540c6ad24967f4a0280f0679f9acceee57a2d
This commit is contained in:
Ricardo Wurmus
2026-03-25 11:57:30 +01:00
parent c0ca73afdd
commit 4cc60db93e

View File

@@ -31834,20 +31834,22 @@ repositories.")
(define-public r-fs
(package
(name "r-fs")
(version "1.6.7")
(version "2.0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "fs" version))
(sha256
(base32
"04g49f3abg181d85bv05gx322m3h70p95k9hjmn1cxsin7saiw78"))))
"1hp00xy895hk12nmzy4r269vnj0rfry6czwb3byicbbp93bhc5qx"))))
(properties
'((updater-ignored-native-inputs
. ("r-testthat" "r-spelling" "r-vctrs" "r-withr"))))
. ("r-testthat" "r-spelling" "r-vctrs" "r-withr"))
(updater-extra-inputs . ("libuv"))))
(build-system r-build-system)
;; Tests require r-testthat, which indirectly depends on this package.
(arguments (list #:tests? #false))
(inputs (list libuv))
(native-inputs
(list pkg-config r-knitr))
(home-page "https://fs.r-lib.org")