From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 13/26] gnu: kde-frameworks: Add kdnssd. Date: Mon, 8 Aug 2016 13:54:11 +0200 Message-ID: <20160808115424.13372-14-david@craven.ch> References: <20160808115424.13372-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj9F-0000tS-RN for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWj9D-0002uu-N4 for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:12 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:54181) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWj9C-0002jd-FU for guix-devel@gnu.org; Mon, 08 Aug 2016 07:55:11 -0400 In-Reply-To: <20160808115424.13372-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: David Craven * gnu/packages/kde-frameworks.scm (kdnssd): New variable. Co-authored-by: Hartmut Goebel --- gnu/packages/kde-frameworks.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 09db98c..310b5e1 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -423,6 +423,33 @@ as well as an API to create KDED modules.") ;; the lgpl2.1. Some source files are under non-copyleft licenses. (license license:lgpl2.1+))) +(define-public kdnssd + (package + (name "kdnssd") + (version "5.24.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("qttools" ,qttools))) + (inputs + `(("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 +Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, +such as printers, to be discovered without any user intervention or centralized +infrastructure.") + (license license:lgpl2.1+))) + (define-public kwindowsystem (package (name "kwindowsystem") -- 2.9.0