gnu: zenity: Update to 3.43.0.
* gnu/packages/gnome.scm (zenity): Update to 3.43.0. [build-system]: Use meson-build-system. [arguments]: New field. [inputs]: Add gtk+. Remove libnotify and webkitgtk.master
parent
c73d0555fe
commit
3c5394ca7b
|
@ -7478,7 +7478,7 @@ powerful general purpose text editor.")
|
||||||
(define-public zenity
|
(define-public zenity
|
||||||
(package
|
(package
|
||||||
(name "zenity")
|
(name "zenity")
|
||||||
(version "3.32.0")
|
(version "3.43.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/zenity/"
|
(uri (string-append "mirror://gnome/sources/zenity/"
|
||||||
|
@ -7486,12 +7486,17 @@ powerful general purpose text editor.")
|
||||||
"zenity-" version ".tar.xz"))
|
"zenity-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15fdh8xfdhnwcynyh4byx3mrjxbyprqnwxzi7qn3g5wwaqryg1p7"))))
|
"0czq2vx636xbvg7zbdqkxq41zgm7v1h048awy0cgls0q1hgcmmxh"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(native-inputs
|
(arguments
|
||||||
(list gettext-minimal itstool pkg-config))
|
(list #:phases #~(modify-phases %standard-phases
|
||||||
(inputs
|
(add-after 'unpack 'disable-gtk-update-icon-cache
|
||||||
(list libnotify webkitgtk))
|
;; The gtk-update-icon-cache tool is only run when
|
||||||
|
;; DESTDIR is unset.
|
||||||
|
(lambda _
|
||||||
|
(setenv "DESTDIR" "/"))))))
|
||||||
|
(native-inputs (list gettext-minimal itstool pkg-config))
|
||||||
|
(inputs (list gtk+))
|
||||||
(synopsis "Display graphical dialog boxes from shell scripts")
|
(synopsis "Display graphical dialog boxes from shell scripts")
|
||||||
(home-page "https://www.gnome.org")
|
(home-page "https://www.gnome.org")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue