guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit dac8166921a1645fc5e047cad0eb17c05408d9c2
Author: Sughosha <[email protected]>
AuthorDate: Wed Jul 8 13:32:08 2026 +0530
gnu: wacomtablet: Fix importing the required QML modules.
* gnu/packages/kde-plasma.scm (wacomtablet)[inputs]: Remove kconfig,
kcmutils,
plasma5support, qtdeclarative, and libplasma.
[propagated-inputs]: Add kcmutils, kconfig, kirigami, ksvg, libplasma,
plasma5support, and qtdeclarative.
---
gnu/packages/kde-plasma.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 161ba2f2ee..22815b7694 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -3342,24 +3342,27 @@ of a Plasma shell.")
(lambda* (#:key tests? (test-exclude "") #:allow-other-keys)
(when tests?
(invoke "dbus-launch" "ctest" "-E" test-exclude)))))))
+ ;; These packages are required by the QML modules of the plasmoid.
+ (propagated-inputs (list kcmutils
+ kconfig
+ kirigami
+ ksvg
+ libplasma
+ plasma5support
+ qtdeclarative))
(native-inputs (list dbus extra-cmake-modules kdoctools pkg-config))
(inputs (list kcoreaddons
ki18n
kio
kglobalaccel
- kconfig
- kcmutils
kxmlgui
kwidgetsaddons
kwindowsystem
knotifications
kdbusaddons
- plasma5support
- qtdeclarative
libwacom
libxi
libxkbcommon
- libplasma
qtwayland
xf86-input-wacom))
(home-page "https://invent.kde.org/plasma/wacomtablet")