z572 pushed a commit to branch kde-team
in repository guix.
commit 51be2c6f83c96183a06ea0a50d1df91a5c3b5cfa
Author: Zheng Junjie <[email protected]>
AuthorDate: Sun Apr 7 16:40:50 2024 +0800
gnu: Add kglobalaccel-6.
* gnu/packages/kde-frameworks.scm (kglobalaccel-6): New variable.
(kglobalaccel): Inherit above.
Change-Id: I85205691fdac39dca094fbe833abf6eebd4cc36a
---
gnu/packages/kde-frameworks.scm | 41 +++++++++++++++++++++++++++++++++--------
1 file changed, 33 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index a69f82e148..04af3cb436 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -3477,8 +3477,40 @@ emoticons coming from different providers.")
;; dual licensed, image files are licensed under cc-by-sa4.0
(license (list license:gpl2+ license:lgpl2.1+ license:cc-by-sa4.0))))
+(define-public kglobalaccel-6
+ (package
+ (name "kglobalaccel")
+ (version "6.1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1wk45z9r6387p54sgqmqyddsni30hbiqihlxb22ybswfi39i6nw8"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules pkg-config qttools))
+ (inputs
+ (list kconfig-6
+ kcrash-6
+ kcoreaddons-6
+ kdbusaddons-6
+ kwindowsystem-6
+ qtdeclarative))
+ (arguments (list #:qtbase qtbase))
+ (home-page "https://community.kde.org/Frameworks")
+ (synopsis "Global desktop keyboard shortcuts")
+ (description "KGlobalAccel allows you to have global accelerators that are
+independent of the focused window. Unlike regular shortcuts, the application's
+window does not need focus for them to be activated.")
+ (license license:lgpl2.1+)))
+
(define-public kglobalaccel
(package
+ (inherit kglobalaccel-6)
(name "kglobalaccel")
(version "5.114.0")
(source (origin
@@ -3490,7 +3522,6 @@ emoticons coming from different providers.")
(sha256
(base32
"19mmav055fnzyl760fyhf0pdvaidd5i1h04l2hcnpin4p1jnpfap"))))
- (build-system qt-build-system)
(native-inputs
(list extra-cmake-modules pkg-config qttools-5))
(inputs
@@ -3499,16 +3530,10 @@ emoticons coming from different providers.")
kcoreaddons
kdbusaddons
kwindowsystem
- qtbase-5
qtx11extras
qtdeclarative-5
xcb-util-keysyms))
- (home-page "https://community.kde.org/Frameworks")
- (synopsis "Global desktop keyboard shortcuts")
- (description "KGlobalAccel allows you to have global accelerators that are
-independent of the focused window. Unlike regular shortcuts, the application's
-window does not need focus for them to be activated.")
- (license license:lgpl2.1+)))
+ (arguments '())))
(define-public kiconthemes
(package