guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/06: gnu: Add s6-dns.


From: Ludovic Courtès
Subject: 05/06: gnu: Add s6-dns.
Date: Fri, 29 Jul 2016 15:30:10 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 798b776deb2b0dd7dbadebfad62989693808daa8
Author: Eric Le Bihan <address@hidden>
Date:   Thu Jul 28 20:05:56 2016 +0200

    gnu: Add s6-dns.
    
    * gnu/packages/skarnet.scm (s6-dns): New variable.
    
    Signed-off-by: Eric Le Bihan <address@hidden>
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/skarnet.scm |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 59c3782..84f87e6 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -131,3 +131,33 @@ different 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.")))
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]