diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-08-20 21:25:11 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-01-31 16:25:55 +0100 |
commit | 2b3aa28556dfe04c8cca423c079f8493a9f6b74e (patch) | |
tree | 384fc36d6e47c9e71d6895084b054b2389313dfd | |
parent | 5aada6b5fa2fbb9b244d2b6f8968b990bbc5d58a (diff) | |
download | guix-2b3aa28556dfe04c8cca423c079f8493a9f6b74e.tar.gz |
gnu: Add khotkeys.
* gnu/packages/kde-plasma.scm (khotkeys): New variable.
-rw-r--r-- | gnu/packages/kde-plasma.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index eded039ee6..e96b11fa30 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -415,6 +415,36 @@ Each of the red, green, and blue components can be adjusted individually, or all three components can be adjusted together.") (license license:gpl2+))) +(define-public khotkeys + (package + (name "khotkeys") + (version "5.19.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" version + "/khotkeys-" version ".tar.xz")) + (sha256 + (base32 "1nhvnflq7nzxkyfnzx1vdvjh4yrpi1qsf6mjjrnpg8w5ncgbd32n")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kcmutils" ,kcmutils) + ("kdbusaddons" ,kdbusaddons) + ("kdelibs4support" ,kdelibs4support) + ("kglobalaccel" ,kglobalaccel) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("kxmlgui" ,kxmlgui) + ("plasma-framwork" ,plasma-framework) + ("plasma-workspace" ,plasma-workspace) + ("qtx11extras" ,qtx11extras))) + (home-page "https://invent.kde.org/plasma/khotkeys") + (synopsis "Configure input actions for KDE Plasma") + (description "KHotKeys is core-part of the KDE Plasma desktop.") + (license license:gpl2+))) + (define-public kscreen (package (name "kscreen") |