1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 05:30:38 +02:00

gnu: s6-portable-utils: Update to 2.3.1.0.

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

Change-Id: I097acd10b7e9c2abe0bc7af77d56c044980c4d10
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 23e2b722a0
commit 3066d30516

View File

@@ -276,7 +276,7 @@ environment.")))
(define-public s6-portable-utils
(package
(name "s6-portable-utils")
(version "2.3.0.4")
(version "2.3.1.0")
(source
(origin
(method url-fetch)
@@ -284,15 +284,19 @@ environment.")))
"https://skarnet.org/software/s6-portable-utils/s6-portable-utils-"
version ".tar.gz"))
(sha256
(base32 "023bj28ix7mmsdwfgjj9fh9slycd7zjfq7r4sczfz0cir2v8gvld"))))
(base32 "1yc05azffdisbchsk2if1jxaya5l7kkvascpk7a15i72gal4l904"))))
(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-portable-utils")
(license isc)
(synopsis "Tiny command-line Unix utilities")