This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch r-team
in repository guix.

The following commit(s) were added to refs/heads/r-team by this push:
     new aeea7fc777 gnu: r-ggmosaic: Make compatible with latest ggplot2.
aeea7fc777 is described below

commit aeea7fc77729616b849075b5e762570c05c0e0d4
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Nov 27 10:45:56 2025 +0100

    gnu: r-ggmosaic: Make compatible with latest ggplot2.
    
    * gnu/packages/cran.scm (r-ggmosaic)[arguments]: Add phase
    'ggplot-compatibility.
    
    Change-Id: I73200b7c0a588ea54deb39f729b15d422a94d4b1
---
 gnu/packages/cran.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6228b214fb..c92ffd4b01 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15186,6 +15186,14 @@ including functions for geolocation and routing.")
         (base32 "1zm1zfbd0qk6icw65m9hz1hgyqj632ibq3qilidvx5jy7jh8nbpy"))))
     (properties `((upstream-name . "ggmosaic")))
     (build-system r-build-system)
+    (arguments
+     (list
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'ggplot-compatibility
+           (lambda _
+             (substitute* "R/scale-product.R"
+               (("is.waive") "is_waiver")))))))
     (propagated-inputs (list r-dplyr
                              r-ggplot2
                              r-ggrepel

Reply via email to