1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-21 00:25:58 +02:00

gnu: s6-linux-utils: Update to 2.6.3.0.

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

Change-Id: Iabc27a4f0f877696204184d02c1abba7899da7e0
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 73fcd0f134
commit 9c8cedeb0b
+11 -7
View File
@@ -352,7 +352,7 @@ all the details.")))
(define-public s6-linux-utils
(package
(name "s6-linux-utils")
(version "2.6.2.1")
(version "2.6.3.0")
(source
(origin
(method url-fetch)
@@ -360,15 +360,19 @@ all the details.")))
"https://skarnet.org/software/s6-linux-utils/s6-linux-utils-"
version ".tar.gz"))
(sha256
(base32 "0d6jkyfp8d8ifs4dhicdidamvbdmk5r1qa3218jajv6kjir1cpwi"))))
(base32 "0f8782mwyk06x4nrblskphg4csz7icqlr6ls3zyfp69vqwv9q93y"))))
(build-system gnu-build-system)
(inputs (list skalibs))
(arguments
'(#:configure-flags (list
(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"))))
#:tests? #f)) ;no tests exist
(home-page "https://skarnet.org/software/s6-linux-utils")
(license isc)
(synopsis "Set of minimalistic Linux-specific system utilities")