diff options
author | David Arroyo <david@aqwari.net> | 2025-03-30 13:39:27 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-03-31 11:48:57 +0200 |
commit | a6c67857089954fbc24e5d3549eef44596e39bae (patch) | |
tree | 1d9d08219efb60341f016345e6d6b6928fb53906 | |
parent | 989a0bbfb2cead30c58c9422fb50968478535332 (diff) |
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 <andreas@enge.fr>
-rw-r--r-- | gnu/packages/skarnet.scm | 13 |
1 files 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")) |