[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add s6-networking.
From: |
Ludovic Courtès |
Subject: |
06/06: gnu: Add s6-networking. |
Date: |
Fri, 29 Jul 2016 15:30:10 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit 7c6bdeec232a02e192061b5849af3041ec43bf3f
Author: Eric Le Bihan <address@hidden>
Date: Thu Jul 28 20:05:57 2016 +0200
gnu: Add s6-networking.
* gnu/packages/skarnet.scm (s6-networking): New variable.
Signed-off-by: Eric Le Bihan <address@hidden>
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/skarnet.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 84f87e6..57fc12d 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -161,3 +161,46 @@ functionality with a very small amount of code.")))
"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.")))
+(define-public s6-networking
+ (package
+ (name "s6-networking")
+ (version "2.1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"http://skarnet.org/software/s6-networking/s6-networking-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0r8gfv0l2k449nacjy919gqlgn25q7fjxaqra5r37k7kiikkgqfw"))))
+ (build-system gnu-build-system)
+ (inputs `(("skalibs" ,skalibs)
+ ("execline" ,execline)
+ ("s6" ,s6)
+ ("s6-dns" ,s6-dns)))
+ (arguments
+ '(#:configure-flags (list
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "execline")
+ "/lib/execline")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "s6")
+ "/lib/s6")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "s6-dns")
+ "/lib/s6-dns")
+ (string-append "--with-sysdeps="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs/sysdeps"))
+ #:tests? #f))
+ (home-page "http://skarnet.org/software/s6-networking")
+ (license isc)
+ (synopsis "Suite of network utilities for Unix systems")
+ (description
+ "s6-networking is a suite of small networking utilities for Unix systems.
+It includes command-line client and server management, TCP access control,
+privilege escalation across UNIX domain sockets, IDENT protocol management and
+clock synchronization.")))
- branch master updated (ba9e2ee -> 7c6bdee), Ludovic Courtès, 2016/07/29
- 03/06: gnu: execline: Update to 2.1.5.0., Ludovic Courtès, 2016/07/29
- 05/06: gnu: Add s6-dns., Ludovic Courtès, 2016/07/29
- 02/06: gnu: skalibs: Update to 2.3.10.0., Ludovic Courtès, 2016/07/29
- 06/06: gnu: Add s6-networking.,
Ludovic Courtès <=
- 01/06: gnu: Add stellarium., Ludovic Courtès, 2016/07/29
- 04/06: gnu: Add s6., Ludovic Courtès, 2016/07/29