z572 pushed a commit to branch kde-team
in repository guix.

commit 04e4aa7ea6529bce3f4bb0041c8a2ce4fe55d786
Author: Zheng Junjie <[email protected]>
AuthorDate: Tue Jul 9 17:43:10 2024 +0800

    gnu: Add kio-zeroconf.
    
    * gnu/packages/kde.scm (kio-zeroconf): New variable.
    
    Change-Id: I0268484c1cf81822b40ae6eef3ddb0a98cca5e2e
---
 gnu/packages/kde.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 6799af68d5..db11b9c7ed 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -1810,6 +1810,34 @@ Mobipocket e-books in Dolphin and other KDE apps.")
 picture metadata as EXIF/IPTC and XMP.")
     (license license:gpl2+)))
 
+(define-public kio-zeroconf
+  (package
+    (name "kio-zeroconf")
+    (version "24.05.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kio-zeroconf-" version ".tar.xz"))
+       (sha256
+        (base32 "058w37n7s8lbc8mjqjpqarhg8b2796x2yssrxnppib12dld9x4wb"))))
+    (build-system qt-build-system)
+    (native-inputs
+     (list extra-cmake-modules))
+    (inputs
+     (list kdbusaddons kdnssd ki18n kio))
+    (arguments (list #:qtbase qtbase
+                     #:configure-flags
+                     #~(list "-DQT_MAJOR_VERSION=6")))
+    (home-page "https://apps.kde.org/kio_zeroconf/";)
+    (synopsis "DNS-SD Service Discovery Monitor")
+    (description "Adds an entry to Dolphin's Network page to show local
+services such as printers which advertise themselves with DNSSD (called Avahi
+or Bonjour by other projects).")
+    (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+     (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+
 (define-public kuserfeedback
   ;; FIXME: Try to reduce data collection and ensure transmission i disabled 
by default.
   ;; FIXME: Check https://www.reddit.com/r/kde/comments/f7ojg9 for insights

Reply via email to