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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2ce24c1971 gnu: zenity: Update to 4.2.2.
2ce24c1971 is described below

commit 2ce24c197102433f78c4cb2b47929ca507259fab
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Aug 30 20:41:35 2026 +0900

    gnu: zenity: Update to 4.2.2.
    
    * gnu/packages/gnome.scm (zenity): Update to 4.2.2.
    [native-inputs]: Add help2man.  Replace gtk+:bin with gtk:bin.
    [inputs]: Replace gtk+ with gtk.  Add libadwaita and glib:bin.
---
 gnu/packages/gnome.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ebb6b8c533..4c893720e1 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8296,7 +8296,7 @@ powerful general purpose text editor.")
 (define-public zenity
   (package
     (name "zenity")
-    (version "3.44.1")
+    (version "4.2.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/zenity/"
@@ -8304,7 +8304,7 @@ powerful general purpose text editor.")
                                   "zenity-" version ".tar.xz"))
               (sha256
                (base32
-                "1aiyx7z2vnipfmlpk4m20zc5bgjlmh6hx3ix1d61yhb5r6p00m6n"))))
+                "138130f3flxp13bf7j4slaivmxbkarxmf8bf6pyg8vh9jslqd481"))))
     (build-system meson-build-system)
     (arguments
      (list #:phases #~(modify-phases %standard-phases
@@ -8313,8 +8313,9 @@ powerful general purpose text editor.")
                           ;; DESTDIR is unset.
                           (lambda _
                             (setenv "DESTDIR" "/"))))))
-    (native-inputs (list gettext-minimal `(,gtk+ "bin") itstool pkg-config))
-    (inputs (list gtk+))
+    (native-inputs (list gettext-minimal `(,gtk "bin") help2man itstool
+                         pkg-config))
+    (inputs (list libadwaita `(,glib "bin") gtk))
     (synopsis "Display graphical dialog boxes from shell scripts")
     (home-page "https://www.gnome.org";)
     (description

Reply via email to