diff options
author | Greg Hogan <code@greghogan.com> | 2023-05-26 13:49:40 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-06-01 12:44:58 +0300 |
commit | 9511488941abfb38d4e56e38273a83b17df5777a (patch) | |
tree | dda1fdd3f1297486e19dfbd2867224f12137007d /gnu | |
parent | 21388dce633d35f6b661eab0ce177cf9cf45157c (diff) | |
download | guix-9511488941abfb38d4e56e38273a83b17df5777a.tar.gz |
gnu: zenity: Update to 3.44.1.
* gnu/packages/gnome.scm (zenity): Update to 3.44.1. [native-inputs]: Add gtk+:bin. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7df18f055f..324feedcf7 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7754,7 +7754,7 @@ powerful general purpose text editor.") (define-public zenity (package (name "zenity") - (version "3.43.0") + (version "3.44.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/zenity/" @@ -7762,7 +7762,7 @@ powerful general purpose text editor.") "zenity-" version ".tar.xz")) (sha256 (base32 - "0czq2vx636xbvg7zbdqkxq41zgm7v1h048awy0cgls0q1hgcmmxh")))) + "1aiyx7z2vnipfmlpk4m20zc5bgjlmh6hx3ix1d61yhb5r6p00m6n")))) (build-system meson-build-system) (arguments (list #:phases #~(modify-phases %standard-phases @@ -7771,7 +7771,7 @@ powerful general purpose text editor.") ;; DESTDIR is unset. (lambda _ (setenv "DESTDIR" "/")))))) - (native-inputs (list gettext-minimal itstool pkg-config)) + (native-inputs (list gettext-minimal `(,gtk+ "bin") itstool pkg-config)) (inputs (list gtk+)) (synopsis "Display graphical dialog boxes from shell scripts") (home-page "https://www.gnome.org") |