From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43075) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0RYz-0004UR-Jo for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0RYy-00046r-Ep for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43680) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0RYy-00046h-Ap for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e0RYy-00076V-1Q for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:08 -0400 Subject: [bug#28720] [PATCH 09/23] gnu: kdnssd: Enable service discovery on local network via avahi. Resent-Message-ID: From: Hartmut Goebel Date: Fri, 6 Oct 2017 14:16:22 +0200 Message-Id: <20171006121636.30904-10-h.goebel@crazy-compilers.com> In-Reply-To: <20171006121636.30904-1-h.goebel@crazy-compilers.com> References: <20171006121636.30904-1-h.goebel@crazy-compilers.com> 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: 28720@debbugs.gnu.org * gnu/packages/kde-frameworks.scm (kdnssd)[inputs]: Add avahi. --- gnu/packages/kde-frameworks.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 3e3830433..9f7bb41b7 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -31,6 +31,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages aidc) #:use-module (gnu packages attr) + #:use-module (gnu packages avahi) #:use-module (gnu packages base) #:use-module (gnu packages boost) #:use-module (gnu packages bison) @@ -637,7 +638,8 @@ as well as an API to create KDED modules.") `(("extra-cmake-modules" ,extra-cmake-modules) ("qttools" ,qttools))) (inputs - `(("qtbase" ,qtbase))) + `(("avahi" ,avahi) ; alternativly dnssd could be used + ("qtbase" ,qtbase))) (home-page "https://community.kde.org/Frameworks") (synopsis "Network service discovery using Zeroconf") (description "KDNSSD is a library for handling the DNS-based Service -- 2.13.5