summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-15 11:12:09 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:17 +0100
commit05ed8067fc69d02450b64b811e982d8a224ea9df (patch)
tree1bbf1a178d21d420e6c8e7b315a56455e2138c80
parentc93f289b31c1facf3cdf703a605ed82322022cf5 (diff)
gnu: r-vdiffr: Update to 1.0.9.
* gnu/packages/cran.scm (r-vdiffr): Update to 1.0.9. [native-inputs]: Remove r-testthat; add r-withr. Change-Id: I13f1046f27d6b17595334dea1a3f55eb558344bd
-rw-r--r--gnu/packages/cran.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ced4c53be36..a7c3eafb47b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -53148,15 +53148,16 @@ unit tests of graphics).")
(define-public r-vdiffr
(package
(name "r-vdiffr")
- (version "1.0.8")
+ (version "1.0.9")
(source
(origin
(method url-fetch)
(uri (cran-uri "vdiffr" version))
(sha256
(base32
- "16zdb910dc40s79f336mdpr0zymxbjh84vx41051hq4gfx54y342"))))
- (properties `((upstream-name . "vdiffr")))
+ "063i8v5lknlwfpjvf3hm3yj5dsmdrgg6q2r941vj02nfr0zh2kcc"))))
+ (properties `((upstream-name . "vdiffr")
+ (updater-ignored-native-inputs . ("r-ggplot2"))))
(build-system r-build-system)
;; Tests require r-ggplot2, which creates a dependency cycle in pillar.
(arguments (list #:tests? #false))
@@ -53170,7 +53171,7 @@ unit tests of graphics).")
r-rlang
r-testthat
r-xml2))
- (native-inputs (list r-testthat))
+ (native-inputs (list r-withr))
(home-page "https://github.com/r-lib/vdiffr")
(synopsis "Visual regression testing and graphical diffing")
(description