mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: dconf-editor: Don't install 'icon-theme.cache'.
* gnu/packages/gnome.scm (dconf-editor)[arguments]: Add 'skip-gtk-update-icon-cache' phase.
This commit is contained in:
parent
9a0ebe18ed
commit
d25c1836c8
1 changed files with 9 additions and 0 deletions
|
@ -5011,6 +5011,15 @@ beautifying border effects.")
|
|||
(base32
|
||||
"0yf553bd9l030shhs0jkl5gvkzkfxbxxm56xv0l0nmbplaci8wm8"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'skip-gtk-update-icon-cache
|
||||
(lambda _
|
||||
;; Don't create 'icon-theme.cache'.
|
||||
(substitute* "editor/Makefile"
|
||||
(("gtk-update-icon-cache") "true"))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0.
|
||||
("intltool" ,intltool)
|
||||
|
|
Loading…
Reference in a new issue