From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Le Bihan Subject: [PATCH 4/5] gnu: Add s6-dns. Date: Thu, 28 Jul 2016 20:05:56 +0200 Message-ID: <1469729157-18253-5-git-send-email-eric.le.bihan.dev@free.fr> References: <1469729157-18253-1-git-send-email-eric.le.bihan.dev@free.fr> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSphE-0005BS-Fs for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSphC-0007dP-E3 for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:11 -0400 Received: from smtp5-g21.free.fr ([2a01:e0c:1:1599::14]:57000) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSphC-0007dH-8R for guix-devel@gnu.org; Thu, 28 Jul 2016 14:06:10 -0400 Received: from itchy.localdomain (unknown [82.227.241.205]) (Authenticated sender: eric.le.bihan.dev) by smtp5-g21.free.fr (Postfix) with ESMTPSA id 201595FF6C for ; Thu, 28 Jul 2016 20:14:17 +0200 (CEST) In-Reply-To: <1469729157-18253-1-git-send-email-eric.le.bihan.dev@free.fr> 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 * gnu/packages/skarnet.scm (s6-dns): New variable. Signed-off-by: Eric Le Bihan --- gnu/packages/skarnet.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm index 3678cc8..9df367a 100644 --- a/gnu/packages/skarnet.scm +++ b/gnu/packages/skarnet.scm @@ -130,3 +130,33 @@ sets of independent tools that can be used within or without the framework, and that can be assembled together to achieve powerful functionality with a very small amount of code."))) +(define-public s6-dns + (package + (name "s6-dns") + (version "2.0.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://skarnet.org/software/s6-dns/s6-dns-" + version ".tar.gz")) + (sha256 + (base32 + "1ji47iy8czx4jmi763dxd6lgjbnp4vqqgcijh46ym65l0a97z04w")))) + (build-system gnu-build-system) + (inputs `(("skalibs" ,skalibs))) + (arguments + '(#:configure-flags (list + (string-append "--with-lib=" + (assoc-ref %build-inputs "skalibs") + "/lib/skalibs") + (string-append "--with-sysdeps=" + (assoc-ref %build-inputs "skalibs") + "/lib/skalibs/sysdeps")) + #:tests? #f)) + (home-page "http://skarnet.org/software/s6-dns") + (license isc) + (synopsis "Suite of DNS client programs") + (description + "s6-dns is a suite of DNS client programs and libraries for Unix systems, +as an alternative to the BIND, djbdns or other DNS clients."))) + -- 2.4.11