guix-commits
[Top][All Lists]
Advanced

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

128/143: gnu: Add kdialog.


From: guix-commits
Subject: 128/143: gnu: Add kdialog.
Date: Mon, 21 Nov 2022 16:10:54 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit b6a119794a7af94b03f0b32f8207db7cd1a8cbb3
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Sun Sep 25 09:34:17 2022 +0200

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

diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index d8ae365c04..94e95bed25 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -424,6 +424,32 @@ Kate's features include:
      "This package allows to select which QLoggingCategory are displayed.")
     (license license:lgpl2.0+)))
 
+(define-public kdialog
+  (package
+    (name "kdialog")
+    (version "22.08.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/release-service/"
+                                  version "/src/kdialog-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1lqzhfn5g16qr6ada9i0i3kshna1zxp1y20ylwmmsa82bgmyblhx"))))
+    (build-system qt-build-system)
+    (native-inputs (list extra-cmake-modules kdoctools))
+    (inputs (list ktextwidgets
+                  knotifications
+                  kguiaddons
+                  kiconthemes
+                  kwindowsystem
+                  kio
+                  kdbusaddons))
+    (home-page "https://invent.kde.org/utilities/kdialog";)
+    (synopsis "Show dialog boxes from shell scripts")
+    (description "This package provides tool to show nice dialog boxes from
+shell scripts.")
+    (license license:gpl2+)))
+
 (define-public keurocalc
   (let ((commit "a760d8a7e58b36eb72d15e847f96599c93785194") ; just one release
         (revision "1"))



reply via email to

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