all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#35854] [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue.
@ 2019-05-22  7:27 Reza Alizadeh Majd
  2019-05-22  8:03 ` Reza Alizadeh Majd
  2019-05-24 16:05 ` bug#35854: " Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Reza Alizadeh Majd @ 2019-05-22  7:27 UTC (permalink / raw)
  To: 35854; +Cc: Reza Alizadeh Majd

* gnu/packages/lxqt.scm (lxqt-panel): move `kwindowsystem` from `inputs`
to `propagated-inputs`
---
 gnu/packages/lxqt.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index d91efe715d..a03a93e5c5 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2018, 2019 Meiyo Peng <meiyo@riseup.net>
 ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2019 Reza Alizadeh Majd <r.majd@pantherx.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -559,7 +560,6 @@ of other programs.")
     (inputs
      `(("alsa-lib" ,alsa-lib)
        ("kguiaddons" ,kguiaddons)
-       ("kwindowsystem" ,kwindowsystem)
        ("libdbusmenu-qt" ,libdbusmenu-qt)
        ("liblxqt" ,liblxqt)
        ("libqtxdg" ,libqtxdg)
@@ -582,6 +582,8 @@ of other programs.")
      `(("pkg-config" ,pkg-config)
        ("lxqt-build-tools" ,lxqt-build-tools)
        ("qttools" ,qttools)))
+    (propagated-inputs
+      `(("kwindowsystem" ,kwindowsystem)))
     (arguments
      '(#:tests? #f                      ; no tests
        #:phases
-- 
2.19.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#35854] [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue.
  2019-05-22  7:27 [bug#35854] [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue Reza Alizadeh Majd
@ 2019-05-22  8:03 ` Reza Alizadeh Majd
  2019-05-24 16:05 ` bug#35854: " Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Reza Alizadeh Majd @ 2019-05-22  8:03 UTC (permalink / raw)
  To: 35854

list of opened applications wouldn't show in lxqt-panel's taskbar plugin, 
since `kwindowsystem` is responsible for that, moving this library from 
`inputs` to `propagated-inputs` fixed this issue. 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#35854: [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue.
  2019-05-22  7:27 [bug#35854] [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue Reza Alizadeh Majd
  2019-05-22  8:03 ` Reza Alizadeh Majd
@ 2019-05-24 16:05 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2019-05-24 16:05 UTC (permalink / raw)
  To: Reza Alizadeh Majd; +Cc: 35854-done

[-- Attachment #1: Type: text/plain, Size: 427 bytes --]

Reza Alizadeh Majd <r.majd@pantherx.org> skribis:

> * gnu/packages/lxqt.scm (lxqt-panel): move `kwindowsystem` from `inputs`
> to `propagated-inputs`

Applied, but I added a comment based on your message (see below).  In
general, ‘propagated-inputs’ should be used only when strictly
necessary, so when we use them, it’s important to add comments
explaining why we do so.

Thanks for the patch!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 591 bytes --]

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index c3b25e5417..a8699b3d09 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -583,7 +583,9 @@ of other programs.")
        ("lxqt-build-tools" ,lxqt-build-tools)
        ("qttools" ,qttools)))
     (propagated-inputs
-      `(("kwindowsystem" ,kwindowsystem)))
+     ;; Propagating KWINDOWSYSTEM so that the list of opened applications
+     ;; shows up in lxqt-panel's taskbar plugin.
+     `(("kwindowsystem" ,kwindowsystem)))
     (arguments
      '(#:tests? #f                      ; no tests
        #:phases

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-24 16:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-22  7:27 [bug#35854] [PATCH] lxqt: lxqt-panel: fix taskbar plugin's application list issue Reza Alizadeh Majd
2019-05-22  8:03 ` Reza Alizadeh Majd
2019-05-24 16:05 ` bug#35854: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.