gnu: lxqt-config: Move libkscreen to propagated-inputs.
* gnu/packages/lxqt.scm (lxqt-config): Move libkscreen to propagated-inputs. Kscreen is a runtime dependency. lxqt-config-monitor will not open without it available. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
20eea7b904
commit
6d5ff52193
|
@ -376,7 +376,6 @@ the operating system LXQt is running on.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("eudev" ,eudev)
|
`(("eudev" ,eudev)
|
||||||
("kwindowsystem" ,kwindowsystem)
|
("kwindowsystem" ,kwindowsystem)
|
||||||
("libkscreen" ,libkscreen)
|
|
||||||
("liblxqt" ,liblxqt)
|
("liblxqt" ,liblxqt)
|
||||||
("libqtxdg" ,libqtxdg)
|
("libqtxdg" ,libqtxdg)
|
||||||
("libxcursor" ,libxcursor)
|
("libxcursor" ,libxcursor)
|
||||||
|
@ -392,6 +391,10 @@ the operating system LXQt is running on.")
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("lxqt-build-tools" ,lxqt-build-tools)
|
("lxqt-build-tools" ,lxqt-build-tools)
|
||||||
("qttools" ,qttools)))
|
("qttools" ,qttools)))
|
||||||
|
;; XXX: This is a workaround so libkscreen can find the backends as we
|
||||||
|
;; dont have a way specify them. We may want to patch like Nix does.
|
||||||
|
(propagated-inputs
|
||||||
|
`(("libkscreen" ,libkscreen)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no tests
|
'(#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Reference in New Issue