guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit dd1af48057707fbc837dd0417cd60d61202bb9d7
Author: Sughosha <[email protected]>
AuthorDate: Sat Jul 4 20:11:19 2026 +0530
gnu: kitemmodels: Fix importing the required QML modules.
* gnu/packages/kde-frameworks.scm (kitemmodels)[inputs]: Remove
qtdeclarative.
[propagated-inputs]: Add qtdeclarative.
---
gnu/packages/kde-frameworks.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index a0c869a460..14b16fda8a 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1342,9 +1342,11 @@ of applications that follow the Kirigami Human Interface
Guidelines.")
(base32
"1hiy4z3xc4a01pkvq0h3v0ipm6whfb142rv9dqqw4icqyxvdyqpg"))))
(build-system qt-build-system)
+ ;; As required by itemmodelsplugin.qmltypes.
+ (propagated-inputs
+ (list qtdeclarative))
(native-inputs
(list extra-cmake-modules))
- (inputs (list qtdeclarative))
(arguments (list #:qtbase qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "Set of item models extending the Qt model-view framework")