gnu: kiconthemes: Use gexp.
* gnu/packages/kde-frameworks.scm (kiconthemes): Use gexp. Signed-off-by: Marius Bakke <marius@gnu.org>
parent
9206921aa3
commit
5922ceabde
|
@ -2563,16 +2563,17 @@ window does not need focus for them to be activated.")
|
||||||
qtdeclarative-5
|
qtdeclarative-5
|
||||||
qtsvg-5))
|
qtsvg-5))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'check 'check-setup
|
(add-before 'check 'check-setup
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(setenv "XDG_DATA_DIRS"
|
(setenv "XDG_DATA_DIRS"
|
||||||
(string-append (assoc-ref inputs "shared-mime-info")
|
(string-append #$(this-package-native-input
|
||||||
"/share"))
|
"shared-mime-info")
|
||||||
(setenv "HOME" (getcwd))
|
"/share"))
|
||||||
;; make Qt render "offscreen", required for tests
|
(setenv "HOME" (getcwd))
|
||||||
(setenv "QT_QPA_PLATFORM" "offscreen"))))))
|
;; make Qt render "offscreen", required for tests
|
||||||
|
(setenv "QT_QPA_PLATFORM" "offscreen"))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Icon GUI utilities")
|
(synopsis "Icon GUI utilities")
|
||||||
(description "This library contains classes to improve the handling of icons
|
(description "This library contains classes to improve the handling of icons
|
||||||
|
|
Reference in New Issue