guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9a1f372a3419088d99073aa0b28305c789678ef0
Author: Sughosha <[email protected]>
AuthorDate: Fri Sep 19 21:11:17 2025 +0530
gnu: ktimer: Move to kde-utils.scm.
* gnu/packages/kde.scm (ktimer): Delete variable.
* gnu/packages/kde-utils.scm (ktimer): New variable.
Change-Id: I0c712a445cce0ab4790dcc4d9764205a2e46ac07
---
gnu/packages/kde-utils.scm | 34 ++++++++++++++++++++++++++++++++++
gnu/packages/kde.scm | 33 ---------------------------------
2 files changed, 34 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index 1b30afa600..280e57ddfd 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -1118,6 +1118,40 @@ Almost completely customizable, Krusader is very user
friendly, fast and looks
great on your desktop.")
(license license:gpl2+)))
+(define-public ktimer
+ (package
+ (name "ktimer")
+ (version "24.12.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/"
version
+ "/src/ktimer-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1kpz1hz0s32qc1cpbvrs9yw9w86ingc9sk03cykljsc493fhmy9m"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules
+ kdoctools))
+ (inputs
+ (list kcrash
+ kdbusaddons
+ ki18n
+ kio
+ knotifications
+ kconfigwidgets
+ kstatusnotifieritem
+ qt5compat))
+ (arguments
+ (list #:qtbase qtbase
+ #:tests? #f))
+ (home-page "https://kde.org/applications/utilities/ktimer")
+ (synopsis "Countdown Launcher")
+ (description "KTimer is a little tool to execute programs after some time.
+It allows you to enter several tasks and to set a timer for each of them. The
+timers for each task can be started, stopped, changed, or looped.")
+ (license license:gpl2+)))
+
(define-public kxstitch
(let ((commit "bfe934ffc2c2dfa1cc554bc4483a3285b027b00c")
(revision "0"))
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 2f903b4dc3..b9d03a70ae 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -1648,39 +1648,6 @@ to perform data analysis.")
(license (list license:gpl2+ ;labplot
license:gpl3+)))) ;liborigin
-(define-public ktimer
- (package
- (name "ktimer")
- (version "24.12.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://kde/stable/release-service/"
version
- "/src/ktimer-" version ".tar.xz"))
- (sha256
- (base32
- "1kpz1hz0s32qc1cpbvrs9yw9w86ingc9sk03cykljsc493fhmy9m"))))
- (build-system qt-build-system)
- (native-inputs
- (list extra-cmake-modules
- kdoctools))
- (inputs
- (list kcrash
- kdbusaddons
- ki18n
- kio
- knotifications
- kconfigwidgets
- kstatusnotifieritem
- qt5compat))
- (arguments
- (list #:qtbase qtbase
- #:tests? #f))
- (home-page "https://kde.org/applications/utilities/ktimer")
- (synopsis "Countdown Launcher")
- (description "KTimer is a little tool to execute programs after some time.
-It allows you to enter several tasks and to set a timer for each of them. The
-timers for each task can be started, stopped, changed, or looped.")
- (license license:gpl2+)))
(define-public kcachegrind
(package