z572 pushed a commit to branch kde-team
in repository guix.
commit e8747dc15773490229d68dc1936255bed31a773b
Author: Zheng Junjie <[email protected]>
AuthorDate: Mon Jul 8 13:10:56 2024 +0800
gnu: Add kcompletion-5.
* gnu/packages/kde-frameworks.scm (kcompletion-5): New variable.
Change-Id: Ieb5c9718e83adae52f915005d65ed276cb58cf27
---
gnu/packages/kde-frameworks.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 9351b559f6..32369f1fdc 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2039,6 +2039,26 @@ applications. It provides a set of completion-ready
widgets, or can be
integrated it into your application's other widgets.")
(license license:lgpl2.1+)))
+(define-public kcompletion-5
+ (package
+ (inherit kcompletion)
+ (name "kcompletion")
+ (version "5.116.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1sh9gpbi65mbs8bszrxh7a9ifgcr7z5jrhsac3670905a6mdmfjj"))))
+ (native-inputs
+ (list extra-cmake-modules qttools-5))
+ (inputs
+ (list kconfig-5 kwidgetsaddons-5))
+ (arguments '())))
+
(define-public kcontacts
(package
(name "kcontacts")