guix-commits
[Top][All Lists]
Advanced

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

75/143: gnu: Add drkonqi.


From: guix-commits
Subject: 75/143: gnu: Add drkonqi.
Date: Mon, 21 Nov 2022 16:10:48 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit f17f1e1f71fbc8b645f5ffe70600e4a51adb52b0
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Fri Aug 26 05:54:06 2022 +0200

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

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 073b4f972e..20d2b27755 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -126,6 +126,47 @@ Breeze is the default theme for the KDE Plasma desktop.")
     (license (list license:bsd-3                  ;cmake/FindSass.cmake
                    license:lgpl2.1+))))           ;<all other files>
 
+(define-public drkonqi
+  (package
+    (name "drkonqi")
+    (version "5.25.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/plasma/"
+                                  version "/" name "-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "0vw4bfld2jdiwm4g3008x8s1lq1ydf87ckb0fvyzsp11hq9nnnk7"))))
+    (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" "connectiontest")))))))
+    (native-inputs (list extra-cmake-modules))
+    (inputs (list ki18n
+                  kcoreaddons
+                  kconfig
+                  kservice
+                  kdeclarative
+                  kjobwidgets
+                  kio
+                  kcrash
+                  kcompletion
+                  kwidgetsaddons
+                  kwallet
+                  knotifications
+                  kidletime
+                  kwindowsystem
+                  ksyntaxhighlighting
+                  qtdeclarative-5))
+    (synopsis "Crash handler for KDE software")
+    (description "This package provides an automatic handler for crashed 
apps.")
+    (home-page "https://invent.kde.org/plasma/drkonqi";)
+    (license license:gpl2+)))
+
 (define-public kactivitymanagerd
   (package
     (name "kactivitymanagerd")



reply via email to

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