mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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.
This commit is contained in:
parent
844cc1929f
commit
321c73c387
1 changed files with 9 additions and 1 deletions
|
@ -569,9 +569,17 @@ and keep up to date translations of documentation.")
|
|||
(base32
|
||||
"1365fabz3q7n3bl775z82m1nzg18birxxyd7l2ssbbkqrx3h7wgi"))))
|
||||
(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
|
||||
`(("glib:bin" ,glib "bin")
|
||||
("gtk+" ,gtk+ "bin") ; gtk-update-icon-cache
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)
|
||||
("docbook-xml" ,docbook-xml)
|
||||
|
|
Loading…
Reference in a new issue