diff options
author | Zheng Junjie <[email protected]> | 2024-07-08 12:34:38 +0800 |
---|---|---|
committer | Zheng Junjie <[email protected]> | 2024-07-18 10:45:25 +0800 |
commit | e45b14c525b339fa7b5eba4f3546c0f22122c007 (patch) | |
tree | 8ce1d2572d25117d85a896b050f4731ffe261564 | |
parent | 095f6d5b331a2552d86258d99dbf636376f4102f (diff) |
gnu: Add kauth-5.
* gnu/packages/kde-frameworks.scm (kauth-5): New variable.
Change-Id: Iad8d436d222957c00bc63f10e7adff847b6b06af
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 3acdb522fb..a71be8dddc 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1787,6 +1787,27 @@ actions that need to be performed as a privileged user to small set of helper utilities.") (license license:lgpl2.1+))) +(define-public kauth-5 + (package + (inherit kauth) + (name "kauth") + (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 + "1x0zd6lqv855jkihxpzhxs732qiva31kzjah9hf2j6xaq0dfxqdc")))) + (build-system cmake-build-system) + (native-inputs + (list dbus extra-cmake-modules qttools-5)) + (inputs + (list kcoreaddons-5 polkit-qt qtbase-5)) + (propagated-inputs '()))) + (define-public kcompletion (package (name "kcompletion") |