Archived
1
0
Fork 0

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

* gnu/packages/skarnet.scm (s6-linux-init)[version]: Update to 1.0.3.1.
[inputs]: Add execline and s6.
[arguments]: Add '--with-lib=' for execline and s6.
This commit is contained in:
Oleg Pykhalov 2020-01-09 02:59:51 +03:00
parent 2266eecfae
commit c1eab4a2a9
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -287,7 +287,7 @@ systems and other constrained environments, but they work everywhere.")))
(define-public s6-linux-init (define-public s6-linux-init
(package (package
(name "s6-linux-init") (name "s6-linux-init")
(version "0.4.0.1") (version "1.0.3.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -295,16 +295,24 @@ systems and other constrained environments, but they work everywhere.")))
"http://skarnet.org/software/s6-linux-init/s6-linux-init-" "http://skarnet.org/software/s6-linux-init/s6-linux-init-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 "0i79b0r3amhsf1xqr9k9v9bxmm4imlakfpsybviwhlj8dlawldxm")))) (base32 "1yq2xnp41a1lqpjzvq5jawgy64jwaxalvjdnlvgdpi9bkicgasi1"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("skalibs" ,skalibs))) `(("execline" ,execline)
("s6", s6)
("skalibs" ,skalibs)))
(arguments (arguments
'(#:configure-flags '(#:configure-flags
(list (list
(string-append "--with-lib=" (string-append "--with-lib="
(assoc-ref %build-inputs "skalibs") (assoc-ref %build-inputs "skalibs")
"/lib/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=" (string-append "--with-sysdeps="
(assoc-ref %build-inputs "skalibs") (assoc-ref %build-inputs "skalibs")
"/lib/skalibs/sysdeps")) "/lib/skalibs/sysdeps"))