me
/
guix
Archived
1
0
Fork 0

gnu: gnome-disk-utility: Don't create icon cache.

* gnu/packages/gnome.scm (gnome-disk-utility)[arguments]: Add phase to
skip creating the gtk icon cache.
[native-inputs]: Remove gtk+:bin.
master
Efraim Flashner 2019-11-07 12:23:11 +02:00
parent 844cc1929f
commit 321c73c387
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 1 deletions

View File

@ -569,9 +569,17 @@ and keep up to date translations of documentation.")
(base32 (base32
"1365fabz3q7n3bl775z82m1nzg18birxxyd7l2ssbbkqrx3h7wgi")))) "1365fabz3q7n3bl775z82m1nzg18birxxyd7l2ssbbkqrx3h7wgi"))))
(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* "meson_post_install.py"
(("gtk-update-icon-cache") "true"))
#t)))))
(native-inputs (native-inputs
`(("glib:bin" ,glib "bin") `(("glib:bin" ,glib "bin")
("gtk+" ,gtk+ "bin") ; gtk-update-icon-cache
("intltool" ,intltool) ("intltool" ,intltool)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("docbook-xml" ,docbook-xml) ("docbook-xml" ,docbook-xml)