1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-08-04 08:21:28 +02:00

gnu: s6-linux-init: Update to 1.1.3.0.

* gnu/packages/skarnet.scm (s6-linux-init): Update to 1.1.3.0.
[arguments]: Use G-expressions.

Change-Id: I010e9ef58fd572cf83242e2bf1eea113b239f8ab
Reviwed-by: Andrew Wong <wongandj@runbox.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
David Arroyo
2025-12-08 01:30:18 -05:00
committed by Sharlatan Hellseher
parent 3066d30516
commit 73fcd0f134
+17 -9
View File
@@ -309,7 +309,7 @@ systems and other constrained environments, but they work everywhere.")))
(define-public s6-linux-init
(package
(name "s6-linux-init")
(version "1.1.2.1")
(version "1.1.3.0")
(source
(origin
(method url-fetch)
@@ -317,18 +317,26 @@ systems and other constrained environments, but they work everywhere.")))
"https://skarnet.org/software/s6-linux-init/s6-linux-init-"
version ".tar.gz"))
(sha256
(base32 "0c35jr09d6jrnsbm2ijfcjnc94ylz0adf7bj52hlfzwv495027lp"))))
(base32 "1vdkhxafbns8yx7d8dnw995xirhzgn85155igvvk9hcsf5mmj6yi"))))
(build-system gnu-build-system)
(inputs
(list execline s6 skalibs))
(arguments
'(#:configure-flags
(list
"--disable-static"
(string-append "--with-sysdeps="
(assoc-ref %build-inputs "skalibs")
"/lib/skalibs/sysdeps"))
#:tests? #f)) ; no tests exist
(list
#:configure-flags
#~(list (string-append "--with-sysdeps="
(search-input-directory %build-inputs
"/lib/skalibs/sysdeps"))
(string-append "--with-lib="
(dirname (search-input-file %build-inputs
"/lib/libskarnet.a")))
(string-append "--with-lib="
(dirname (search-input-file %build-inputs
"/lib/libexecline.a")))
(string-append "--with-lib="
(dirname (search-input-file %build-inputs
"/lib/libs6.a"))))
#:tests? #f)) ;no tests exist
(home-page "https://skarnet.org/software/s6-linux-init")
(license isc)
(synopsis "Minimalistic tools to create an s6-based init system on Linux")