diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-06 11:48:48 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:05 +0800 |
commit | 84be9ea6f71020996d6ac1e85a20020845c94719 (patch) | |
tree | 4551c8aeafa0519cf4e3ee00b370c467891b6aa2 /gnu/packages/kde-frameworks.scm | |
parent | ab7fbc79531ed69dd89aa88f3a5e27de4d26b630 (diff) | |
download | guix-84be9ea6f71020996d6ac1e85a20020845c94719.tar.gz guix-84be9ea6f71020996d6ac1e85a20020845c94719.zip |
gnu: kpeople: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (kpeople): Update to 6.3.0.
[inputs]: Remove qtbase-5 and qtdeclarative-5; add kcontacts and qtdeclarative.
[arguments]: Set #:qtbase to qtbase.
Change-Id: I547deb5ebc313032758c89ae0b8ccb891f4150b4
Diffstat (limited to 'gnu/packages/kde-frameworks.scm')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index e7a9567349..5fe16c41a2 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -2999,7 +2999,7 @@ widgets with a user-interface defined in terms of actions.") (define-public kpeople (package (name "kpeople") - (version "5.114.0") + (version "6.3.0") (source (origin (method url-fetch) (uri (string-append @@ -3008,7 +3008,7 @@ widgets with a user-interface defined in terms of actions.") name "-" version ".tar.xz")) (sha256 (base32 - "04v0s3amn6lbb16qvp1r6figckva6xk8z7djk8jda8fbnx8dx2r1")))) + "0gihf93jjy3qc02h9qjnxjp67jb38rahx5f1k1hm9pxcasg9fzwn")))) (build-system qt-build-system) (native-inputs (list extra-cmake-modules)) @@ -3018,11 +3018,12 @@ widgets with a user-interface defined in terms of actions.") kitemviews ki18n kservice + kcontacts kwidgetsaddons - qtbase-5 - qtdeclarative-5)) + qtdeclarative)) (arguments - `(#:tests? #f)) ; FIXME: 1/3 tests fail. + (list #:qtbase qtbase + #:tests? #f)) ; FIXME: 1/3 tests fail. (home-page "https://community.kde.org/Frameworks") (synopsis "Provides access to all contacts and aggregates them by person") (description "KPeople offers unified access to our contacts from different |