diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-08-26 06:50:41 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:13 +0100 |
commit | 10dba30fb33ab8aa13d28a82c781d28945089c02 (patch) | |
tree | 03e043e0e4387838f5440ba53e8528e0a47d2a2e | |
parent | 20d7c6b1a29abfff32e98f2ad12672a15bf8aacf (diff) | |
download | guix-10dba30fb33ab8aa13d28a82c781d28945089c02.tar.gz guix-10dba30fb33ab8aa13d28a82c781d28945089c02.zip |
gnu: Add kdeplasma-addons.
* gnu/packages/kde-plasma.scm (kdeplasma-addons): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
-rw-r--r-- | gnu/packages/kde-plasma.scm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index e98c13c2bf..01018f705f 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -413,6 +413,50 @@ KDE Frameworks 5 to better interact with the system.") (home-page "https://invent.kde.org/plasma/kde-cli-tools") (license license:lgpl2.0+))) +(define-public kdeplasma-addons + (package + (name "kdeplasma-addons") + (version "5.25.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" version + "/" name "-" version ".tar.xz")) + (sha256 + (base32 + "1a5cq0jz69hlcr22wxi2p5mzxv5xcp88220irxmq0dhpk85kywlx")))) + (build-system qt-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "ctest" "-E" + "(converterrunnertest|spellcheckrunnertest)"))))))) + (native-inputs (list extra-cmake-modules)) + (inputs (list karchive + kconfig + kcoreaddons + kdeclarative + kholidays + ki18n + kio + kcmutils + knotifications + krunner + kservice + kunitconversion + knewstuff + plasma-framework + purpose + sonnet + qtdeclarative-5)) + ;qtwebengine-5)) ;; Optional for online dictionary + (synopsis "Add-ons to improve your Plasma experience") + (description + "This package provides multiple addons for the Plasma Desktop.") + (home-page "https://invent.kde.org/plasma/kdeplasma-addons") + (license license:lgpl2.0))) + (define-public kgamma (package (name "kgamma") |