diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-05 23:58:56 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:00 +0800 |
commit | 447e85325fdab04ae1613e91b42e4d44aee876c8 (patch) | |
tree | fbd280d76493a31e130f209932f02af37b9d3db4 /gnu | |
parent | 30052e4649ba7cda4ec168d6ec794e04e2dbb8ee (diff) | |
download | guix-447e85325fdab04ae1613e91b42e4d44aee876c8.tar guix-447e85325fdab04ae1613e91b42e4d44aee876c8.tar.gz |
gnu: kidletime: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (kidletime): Update to 6.3.0.
[inputs]: Remove libxscrnsaver, qtbase-5, and qtx11extras; add qtbase,
qtwayland, wayland, plasma-wayland-protocols, wayland-protocols, and
libxkbcommon.
[native-inputs]: Add wayland.
Change-Id: Iee27d9f4845e0275c9cd0e6194e83e650fb7208a
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index b5dd570d28..1128327687 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -892,22 +892,27 @@ translation scripting.") (define-public kidletime (package (name "kidletime") - (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 - "06sc9w54g4n7s5gjkqz08rgcz6v3pr0bdgx3gbjgzass6l4m8w7p")))) + (version "6.3.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "0ba74qa3p8qfmv2k1mq9wh00yih331y0wzc1i0mk8f37rry6g3yd")))) (build-system cmake-build-system) (native-inputs - (list extra-cmake-modules pkg-config)) + (list extra-cmake-modules pkg-config + ;; for wayland-scanner + wayland)) (inputs - (list libxscrnsaver ; X-Screensaver based poller, fallback mode - qtbase-5 qtx11extras)) + (list qtbase + qtwayland + wayland + plasma-wayland-protocols + wayland-protocols + libxkbcommon)) (home-page "https://community.kde.org/Frameworks") (synopsis "Reporting of idle time of user and system") (description "KIdleTime is a singleton reporting information on idle time. |