mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
guix: Fix wrap-qt-program.
Directory names added here need to match qtbase's native-search-path specifications. * guix/build/qt-utils.scm (wrap-qt-program): Change paths used for QML2_IMPORT_PATH and QT_PLUGIN_PATH.
This commit is contained in:
parent
8ebf4e3a71
commit
d1e4e64cd7
1 changed files with 2 additions and 2 deletions
|
@ -26,9 +26,9 @@ (define (suffix env-var path)
|
|||
(if env-val (string-append env-val ":" path) path)))
|
||||
|
||||
(let ((qml-path (suffix "QML2_IMPORT_PATH"
|
||||
(string-append out "/qml")))
|
||||
(string-append out "/lib/qt5/qml")))
|
||||
(plugin-path (suffix "QT_PLUGIN_PATH"
|
||||
(string-append out "/plugins")))
|
||||
(string-append out "/lib/qt5/plugins")))
|
||||
(xdg-data-path (suffix "XDG_DATA_DIRS"
|
||||
(string-append out "/share")))
|
||||
(xdg-config-path (suffix "XDG_CONFIG_DIRS"
|
||||
|
|
Loading…
Reference in a new issue