z572 pushed a commit to branch kde-team
in repository guix.
commit 4497637f2c57870608ac72dff6302b368d1d2ab7
Author: Zheng Junjie <[email protected]>
AuthorDate: Wed Mar 6 18:45:44 2024 +0800
gnu: Add kitemmodels-6.
* gnu/packages/kde-frameworks.scm (kitemmodels-6): New variable.
(kitemmodels): Inherit above.
Change-Id: I6532819fe24ef6bf67fb72af4c0ae2e83908ab7f
---
gnu/packages/kde-frameworks.scm | 30 +++++++++++++++++++++++++-----
1 file changed, 25 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0e6137b690..284612fc63 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1214,10 +1214,10 @@ and feeling well on both mobile and desktop devices.
They ease the creation
of applications that follow the Kirigami Human Interface Guidelines.")
(license license:lgpl2.1+)))
-(define-public kitemmodels
+(define-public kitemmodels-6
(package
(name "kitemmodels")
- (version "5.114.0")
+ (version "6.1.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1226,12 +1226,12 @@ of applications that follow the Kirigami Human
Interface Guidelines.")
name "-" version ".tar.xz"))
(sha256
(base32
- "1bfmcrbcbrvp2rcaf32vzvarqwp41gn6s4xpf56hnxbwf9kgk1fl"))))
+ "00p3wcsr57mlxx4fka9lvmpf3zsbsl9rbj1ijmn0zw4vyqmd6rsi"))))
(build-system qt-build-system)
(native-inputs
(list extra-cmake-modules))
- (inputs
- (list qtbase-5 qtdeclarative-5))
+ (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")
(description "KItemModels provides the following models:
@@ -1264,6 +1264,26 @@ model to observers
@end enumerate")
(license license:lgpl2.1+)))
+(define-public kitemmodels
+ (package
+ (inherit kitemmodels-6)
+ (name "kitemmodels")
+ (version "5.114.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1bfmcrbcbrvp2rcaf32vzvarqwp41gn6s4xpf56hnxbwf9kgk1fl"))))
+ (native-inputs
+ (list extra-cmake-modules))
+ (inputs
+ (list qtdeclarative-5))
+ (arguments '())))
+
(define-public kitemviews-6
(package
(name "kitemviews")