gnu: gnome-themes-standard: Don't install 'icon-theme.cache'.

* gnu/packages/gnome.scm (gnome-themes-standard)[arguments]: New field.
master
宋文武 2016-08-06 18:43:04 +08:00
parent 5613c27d93
commit 8ac70c7ff3
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 6 additions and 0 deletions

View File

@ -1673,6 +1673,12 @@ engineering.")
(base32
"1p1vvmzfky1ax3yv9ld10xgqwydhmglxpgq3skrfc4539nrq9phw"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags
;; Don't create 'icon-theme.cache'.
(let* ((coreutils (assoc-ref %build-inputs "coreutils"))
(true (string-append coreutils "/bin/true")))
(list (string-append "GTK_UPDATE_ICON_CACHE=" true)))))
(inputs
`(("gtk+" ,gtk+)
("gtk+-2" ,gtk+-2)