1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-26 12:10:29 +02:00

gnu: s6-networking: Update to 2.7.0.4.

* gnu/packages/skarnet.scm (s6-networking): Update to 2.7.0.4.
[arguments]<#:configure-flags>: Remove --with-libs.

Change-Id: Ia9db74187bdb74dac7a31feff3fa7da323d06608
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
David Arroyo
2025-03-30 13:39:24 +02:00
committed by Andreas Enge
parent 972c6e70da
commit d1522c8fb6

View File

@@ -175,30 +175,18 @@ as an alternative to the BIND, djbdns or other DNS clients.")))
(define-public s6-networking
(package
(name "s6-networking")
(version "2.5.1.3")
(version "2.7.0.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://skarnet.org/software/s6-networking/"
"s6-networking-" version ".tar.gz"))
(sha256
(base32 "0xz98pzgx6kc9v1dka04gzw5f3rwww42c07liym0r7pzb74l77m0"))))
(base32 "0r89b6pq50rzdipqk0la96pyw5a68ni6i9fh175zcn2gh86bgg9i"))))
(build-system gnu-build-system)
(inputs (list skalibs execline s6 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"))