summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-08-30 20:41:35 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-31 15:18:01 +0900
commit2ce24c197102433f78c4cb2b47929ca507259fab (patch)
tree84ef3b68832aa50a03fb26e38b6c1d4b3242f98d
parent72a2ee2005cff2ce61157695bfda7e9fad167cad (diff)
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.
-rw-r--r--gnu/packages/gnome.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ebb6b8c5338..4c893720e13 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8296,7 +8296,7 @@ powerful general purpose text editor.")
8296(define-public zenity 8296(define-public zenity
8297 (package 8297 (package
8298 (name "zenity") 8298 (name "zenity")
8299 (version "3.44.1") 8299 (version "4.2.2")
8300 (source (origin 8300 (source (origin
8301 (method url-fetch) 8301 (method url-fetch)
8302 (uri (string-append "mirror://gnome/sources/zenity/" 8302 (uri (string-append "mirror://gnome/sources/zenity/"
@@ -8304,7 +8304,7 @@ powerful general purpose text editor.")
8304 "zenity-" version ".tar.xz")) 8304 "zenity-" version ".tar.xz"))
8305 (sha256 8305 (sha256
8306 (base32 8306 (base32
8307 "1aiyx7z2vnipfmlpk4m20zc5bgjlmh6hx3ix1d61yhb5r6p00m6n")))) 8307 "138130f3flxp13bf7j4slaivmxbkarxmf8bf6pyg8vh9jslqd481"))))
8308 (build-system meson-build-system) 8308 (build-system meson-build-system)
8309 (arguments 8309 (arguments
8310 (list #:phases #~(modify-phases %standard-phases 8310 (list #:phases #~(modify-phases %standard-phases
@@ -8313,8 +8313,9 @@ powerful general purpose text editor.")
8313 ;; DESTDIR is unset. 8313 ;; DESTDIR is unset.
8314 (lambda _ 8314 (lambda _
8315 (setenv "DESTDIR" "/")))))) 8315 (setenv "DESTDIR" "/"))))))
8316 (native-inputs (list gettext-minimal `(,gtk+ "bin") itstool pkg-config)) 8316 (native-inputs (list gettext-minimal `(,gtk "bin") help2man itstool
8317 (inputs (list gtk+)) 8317 pkg-config))
8318 (inputs (list libadwaita `(,glib "bin") gtk))
8318 (synopsis "Display graphical dialog boxes from shell scripts") 8319 (synopsis "Display graphical dialog boxes from shell scripts")
8319 (home-page "https://www.gnome.org") 8320 (home-page "https://www.gnome.org")
8320 (description 8321 (description