gnu: lxqt-panel: fix taskbar plugin's application list issue.
* gnu/packages/lxqt.scm (lxqt-panel): move `kwindowsystem` from `inputs` to `propagated-inputs` Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
42f3eb2e7f
commit
8f5371d083
1 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018, 2019 Meiyo Peng <meiyo@riseup.net>
|
;;; Copyright © 2018, 2019 Meiyo Peng <meiyo@riseup.net>
|
||||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2019 Reza Alizadeh Majd <r.majd@pantherx.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -559,7 +560,6 @@ (define-public lxqt-panel
|
||||||
(inputs
|
(inputs
|
||||||
`(("alsa-lib" ,alsa-lib)
|
`(("alsa-lib" ,alsa-lib)
|
||||||
("kguiaddons" ,kguiaddons)
|
("kguiaddons" ,kguiaddons)
|
||||||
("kwindowsystem" ,kwindowsystem)
|
|
||||||
("libdbusmenu-qt" ,libdbusmenu-qt)
|
("libdbusmenu-qt" ,libdbusmenu-qt)
|
||||||
("liblxqt" ,liblxqt)
|
("liblxqt" ,liblxqt)
|
||||||
("libqtxdg" ,libqtxdg)
|
("libqtxdg" ,libqtxdg)
|
||||||
|
@ -582,6 +582,10 @@ (define-public lxqt-panel
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("lxqt-build-tools" ,lxqt-build-tools)
|
("lxqt-build-tools" ,lxqt-build-tools)
|
||||||
("qttools" ,qttools)))
|
("qttools" ,qttools)))
|
||||||
|
(propagated-inputs
|
||||||
|
;; Propagating KWINDOWSYSTEM so that the list of opened applications
|
||||||
|
;; shows up in lxqt-panel's taskbar plugin.
|
||||||
|
`(("kwindowsystem" ,kwindowsystem)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no tests
|
'(#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Reference in a new issue