mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: krita: Ensure icons are found at runtime.
Fixes <https://bugs.gnu.org/29905>. * gnu/packages/kde.scm (krita)[arguments]: Set the QT_PLUGIN_PATH in a new 'wrap-executable' phase.
This commit is contained in:
parent
ed8bdde9ce
commit
990e93fce1
1 changed files with 15 additions and 1 deletions
|
@ -260,7 +260,21 @@ (define-public krita
|
|||
(assoc-ref %build-inputs "libtiff"))
|
||||
(string-append "-DCMAKE_CXX_FLAGS=-I"
|
||||
(assoc-ref %build-inputs "ilmbase")
|
||||
"/include/OpenEXR"))))
|
||||
"/include/OpenEXR"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Ensure that icons are found at runtime
|
||||
(add-after 'install 'wrap-executable
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(qt '("qtbase" "qtsvg")))
|
||||
(wrap-program (string-append out "/bin/krita")
|
||||
`("QT_PLUGIN_PATH" ":" prefix
|
||||
,(map (lambda (label)
|
||||
(string-append (assoc-ref inputs label)
|
||||
"/lib/qt5/plugins/"))
|
||||
qt)))
|
||||
#t))))))
|
||||
(native-inputs
|
||||
`(("curl" ,curl)
|
||||
("eigen" ,eigen)
|
||||
|
|
Loading…
Reference in a new issue