This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d0b9415627 gnu: Add kaichat.
d0b9415627 is described below
commit d0b94156270339dd93b2bd4b709dcfb9b85f2a67
Author: Sughosha <[email protected]>
AuthorDate: Wed Oct 15 16:13:51 2025 +0530
gnu: Add kaichat.
* gnu/packages/kde-utils.scm (kaichat): New variable.
Change-Id: I1e66e2b5ca80e8d1dc67da316f7dcc3289b8bc53
---
gnu/packages/kde-utils.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index e219716909..7af58b19b3 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -361,6 +361,45 @@ your computer.")
"This package provides a tool to write ISO files to USB disks.")
(license license:gpl3+)))
+(define-public kaichat
+ (package
+ (name "kaichat")
+ (version "0.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde//stable/kaichat/kaichat-" version
+ ".tar.xz"))
+ (sha256
+ (base32 "18bwannb0p40fpqw0ygiq8m9wfl3k6561l10s7754x7a4lgpfshn"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase))
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kiconthemes
+ kio
+ knotifications
+ knotifyconfig
+ kstatusnotifieritem
+ ktextaddons
+ kwidgetsaddons
+ kwindowsystem
+ kxmlgui
+ purpose
+ python
+ sonnet))
+ (home-page "https://apps.kde.org/kaichat/")
+ (synopsis "Chat interface for AI models")
+ (description "KAIChat is a chat interface which allows you to chat with AI
+models such as Ollama.")
+ (license license:gpl3+)))
+
(define-public kamera
(package
(name "kamera")