diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-07 23:48:28 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:22 +0800 |
commit | b2822f9a3a6bc1990035b7c2def90173a34323f2 (patch) | |
tree | c7b6528aaa7c0dc568f0ff15632f96e7cfa83c46 /gnu/packages/kde-pim.scm | |
parent | 74808d276e0c62499dde3d72b20687641b4a5156 (diff) | |
download | guix-b2822f9a3a6bc1990035b7c2def90173a34323f2.tar.gz guix-b2822f9a3a6bc1990035b7c2def90173a34323f2.zip |
gnu: kcalendarsupport: Update to 24.05.2.
* gnu/packages/kde-pim.scm (kcalendarsupport): Update to 24.05.2.
[inputs]: Remove akonadi-calendar, kidentitymanagement, kmime, and qtbase-5.
[propagated-inputs]: Add akonadi-calendar, kidentitymanagement, and kmime.
[native-inputs]: Remove qttools-5; add qttools.
[arguments]: Set #:qtbase to qtbase.
Change-Id: I68026ab7c9172945568f37a13ef940e6ee29d40b
Diffstat (limited to 'gnu/packages/kde-pim.scm')
-rw-r--r-- | gnu/packages/kde-pim.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm index ff18178348..8172ba47ca 100644 --- a/gnu/packages/kde-pim.scm +++ b/gnu/packages/kde-pim.scm @@ -725,21 +725,20 @@ external services.") (define-public kcalendarsupport (package (name "kcalendarsupport") - (version "23.04.3") + (version "24.05.2") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/release-service/" version "/src/calendarsupport-" version ".tar.xz")) (sha256 - (base32 "1zk6kv5nhcd7a5llzh31890xpqdg522ahjdgbwsm7pcp62y0nbsj")))) + (base32 "0qih5p810h1860diqb9yszrv0arf63bd32x7rfizw6mhpkh20ryq")))) (properties `((upstream-name . "calendarsupport"))) (build-system qt-build-system) (native-inputs - (list extra-cmake-modules qttools-5)) + (list extra-cmake-modules qttools)) (inputs (list akonadi - akonadi-calendar akonadi-mime akonadi-notes boost @@ -751,15 +750,14 @@ external services.") kholidays ki18n kiconthemes - kidentitymanagement kio kitemmodels - kmime kpimcommon kpimtextedit ktextwidgets - kxmlgui - qtbase-5)) + kxmlgui)) + (propagated-inputs (list akonadi-calendar kidentitymanagement kmime)) + (arguments (list #:qtbase qtbase)) (home-page "https://api.kde.org/kdepim/calendarsupport/html/index.html") (synopsis "Calendar Support library for KDE PIM") (description "The Calendar Support library provides helper utilities for |