guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d3c940e18c64948c73f49f1fa30dcac7c0fbaffb
Author: David Arroyo <[email protected]>
AuthorDate: Mon Dec 8 01:30:18 2025 -0500
gnu: s6: Update to 2.13.2.0.
* gnu/packages/skarnet.scm (s6): Update to 2.13.2.0.
[arguments]: Use G-expressions.
Change-Id: If90eefa995e557e7e340bdf38d66bc78650052f8
Reviwed-by: Andrew Wong <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/skarnet.scm | 35 +++++++++++++++++++++--------------
1 file changed, 21 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 84b71269d6..83f43bec28 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -120,29 +120,36 @@ complexity.")))
(define-public s6
(package
(name "s6")
- (version "2.13.1.0")
+ (version "2.13.2.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://skarnet.org/software/s6/s6-"
version ".tar.gz"))
(sha256
- (base32 "0znfwb9yx12lyz5kaqylr4iy1ifnxc82vc670jpv0z4mab7i81mz"))))
+ (base32 "0icsz417mkld0v4bbgqwnj1nsyg2n2n32sa0j43bfsvi8a04n4f5"))))
(build-system gnu-build-system)
(inputs (list skalibs execline))
(arguments
- `(#:configure-flags (list
- (string-append "--with-sysdeps="
- (assoc-ref %build-inputs "skalibs")
- "/lib/skalibs/sysdeps"))
- #:tests? #f ; no tests exist
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'install-doc
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (doc (string-append out "/share/doc/s6-" ,version)))
- (copy-recursively "doc" doc)))))))
+ (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"))))
+ #:tests? #f ;no tests exist
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-doc
+ (lambda _
+ (copy-recursively "doc"
+ (string-append #$output "/share/doc/s6-"
+ #$version)))))))
(home-page "https://skarnet.org/software/s6")
(license isc)
(synopsis "Small suite of programs for process supervision")