gnu: sddm: Fix output directory for QML files.

Path must match qtbase's native-search-path specification, otherwise it
will not be picked up by other packages.

* gnu/packages/display-managers.scm (sddm)[arguments]<configure-flags>:
  Change value of "-DQT_IMPORTS_DIR".
This commit is contained in:
Hartmut Goebel 2019-11-22 09:07:50 +01:00
parent 1a016d9dda
commit 8ebf4e3a71
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -102,7 +102,7 @@ (define-public sddm
(assoc-ref %build-inputs "shadow")
"/etc/login.defs")
(string-append "-DQT_IMPORTS_DIR="
(assoc-ref %outputs "out") "/qml")
(assoc-ref %outputs "out") "/lib/qt5/qml")
(string-append "-DCMAKE_INSTALL_SYSCONFDIR="
(assoc-ref %outputs "out") "/etc"))
#:modules ((guix build cmake-build-system)