guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

100/143: gnu: Add kdeplasma-addons.


From: guix-commits
Subject: 100/143: gnu: Add kdeplasma-addons.
Date: Mon, 21 Nov 2022 16:10:51 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 10dba30fb33ab8aa13d28a82c781d28945089c02
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Fri Aug 26 06:50:41 2022 +0200

    gnu: Add kdeplasma-addons.
    
    * gnu/packages/kde-plasma.scm (kdeplasma-addons): New variable.
    
    Signed-off-by: Marius Bakke <marius@gnu.org>
---
 gnu/packages/kde-plasma.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]