andreas pushed a commit to branch master
in repository guix.
commit a6c67857089954fbc24e5d3549eef44596e39bae
Author: David Arroyo <[email protected]>
AuthorDate: Sun Mar 30 13:39:27 2025 +0200
gnu: s6-linux-init: Update to 1.1.2.1.
* gnu/packages/skarnet.scm (s6-linux-init): Update to 1.1.2.1.
[arguments]<#:configure-flags>: Remove --with-libs.
Change-Id: I33fc4836aaf73d583de36c22ee18c1ddf5762431
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/skarnet.scm | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index aef1bdee4c..2f469a481d 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -262,7 +262,7 @@ systems and other constrained environments, but they work
everywhere.")))
(define-public s6-linux-init
(package
(name "s6-linux-init")
- (version "1.1.1.0")
+ (version "1.1.2.1")
(source
(origin
(method url-fetch)
@@ -270,7 +270,7 @@ systems and other constrained environments, but they work
everywhere.")))
"https://skarnet.org/software/s6-linux-init/s6-linux-init-"
version ".tar.gz"))
(sha256
- (base32 "1vm8aqlh8jkqrm3irhf53vvylxqizpqvjg3yb9z00yb568skyj5d"))))
+ (base32 "0c35jr09d6jrnsbm2ijfcjnc94ylz0adf7bj52hlfzwv495027lp"))))
(build-system gnu-build-system)
(inputs
(list execline s6 skalibs))
@@ -278,15 +278,6 @@ systems and other constrained environments, but they work
everywhere.")))
'(#:configure-flags
(list
"--disable-static"
- (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-sysdeps="
(assoc-ref %build-inputs "skalibs")
"/lib/skalibs/sysdeps"))