gnu: gnome-screenshot: Update to 3.34.0.
* gnu/packages/gnome.scm (gnome-screenshot): Update to 3.34.0. [arguments]: Add 'skip-gtk-update-icon-cache' phase. [native-inputs]: Remove gtk+:bin. (cherry picked from commit e822ab3c7b6072c053b25a175ba802b515edff44)master
parent
14faeadd9e
commit
d5101dab53
|
@ -7581,7 +7581,7 @@ can add your own files to the collection.")
|
||||||
(define-public gnome-screenshot
|
(define-public gnome-screenshot
|
||||||
(package
|
(package
|
||||||
(name "gnome-screenshot")
|
(name "gnome-screenshot")
|
||||||
(version "3.32.0")
|
(version "3.34.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -7590,11 +7590,19 @@ can add your own files to the collection.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09ha7dizjm5ymqpjyrqd10ijfb3xlqc1mwg9ajkrbfry11q9yq4b"))))
|
"1rmiq890j7gfn5mcz31xy6jfnnxgc17dq67bhn2k9m5ylbvza2n8"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "build-aux/postinstall.py"
|
||||||
|
(("gtk-update-icon-cache") "true"))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
|
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
|
||||||
("gtk+-bin" ,gtk+ "bin") ; for gtk-update-icon-cache
|
|
||||||
("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("appstream-glib" ,appstream-glib)
|
("appstream-glib" ,appstream-glib)
|
||||||
|
|
Reference in New Issue