From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55047) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieQzf-00049N-Cj for guix-patches@gnu.org; Mon, 09 Dec 2019 16:55:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieQze-0005lB-9Q for guix-patches@gnu.org; Mon, 09 Dec 2019 16:55:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48568) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieQze-0005l1-6H for guix-patches@gnu.org; Mon, 09 Dec 2019 16:55:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieQze-0005K8-5n for guix-patches@gnu.org; Mon, 09 Dec 2019 16:55:02 -0500 Subject: [bug#38553] [PATCH 02/12] gnu: Add zeroconf-ioslave. Resent-Message-ID: From: Hartmut Goebel Date: Mon, 9 Dec 2019 22:53:48 +0100 Message-Id: <20191209215358.24449-2-h.goebel@crazy-compilers.com> In-Reply-To: <20191209215358.24449-1-h.goebel@crazy-compilers.com> References: <20191209215358.24449-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38553@debbugs.gnu.org * gnu/packages/kde.scm (zeroconf-ioslave): New variable. --- gnu/packages/kde.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 33bcaaefd2..d1715fed68 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -691,3 +691,31 @@ system-wide profiler for Linux using statistical sampling with hardware performance counters. There also exist converters for profiling output of Python, PHP, and Perl.") (license license:gpl2))) + +(define-public zeroconf-ioslave + (package + (name "zeroconf-ioslave") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/zeroconf-ioslave-" version ".tar.xz")) + (sha256 + (base32 "1vbi4kpyrk530q2dj8ql2i0gxjybdbmkqpl8vkhrihl7r7f0xc5p")))) + (properties `((tags . ("Desktop" "KDE" "Network")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kdbusaddons" ,kdbusaddons) + ("kdnssd" ,kdnssd) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("qtbase" ,qtbase))) + (home-page "https://kde.org/applications/internet/org.kde.zeroconf_ioslave") + (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 (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) -- 2.21.0