guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit bfc59708e76b51026f4c90e163aadaeeb9e2dfbd
Author: Sughosha <[email protected]>
AuthorDate: Wed Nov 12 16:09:04 2025 +0530
gnu: Add katomic.
* gnu/packages/kde-games.scm (katomic): New variable.
Change-Id: I3d048dd216b512ecaa59a394ef5bcfdbf00bc418
---
gnu/packages/kde-games.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
index 56328cda16..2630e04eca 100644
--- a/gnu/packages/kde-games.scm
+++ b/gnu/packages/kde-games.scm
@@ -93,6 +93,44 @@
(description "Runtime library for kdegames")
(license (list license:gpl2+ license:fdl1.2+))))
+(define-public katomic
+ (package
+ (name "katomic")
+ (version "25.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/katomic-" version ".tar.xz"))
+ (sha256
+ (base32 "1k22md9hbaa0mq51nqmalc7bzjv6rlhcdd9c70jhv8ndxwdvw8ch"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase
+ #:tests? #f )) ;no tests
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list kcompletion
+ kconfig
+ kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kiconthemes
+ knewstuff
+ kwidgetsaddons
+ kxmlgui
+ libkdegames))
+ (home-page "https://apps.kde.org/katomic/")
+ (synopsis "Molecular game")
+ (description "KAtomic is a fun educational game built around molecular
+geometry. It employs simplistic two-dimensional looks at different chemical
+elements.
+
+This package is part of the KDE games module.")
+ (license license:gpl2+)))
+
(define-public ktuberling
(package
(name "ktuberling")