Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
skawarePackages,
|
|
skalibs,
|
|
execline,
|
|
}:
|
|
|
|
skawarePackages.buildPackage {
|
|
pname = "s6";
|
|
version = "2.13.2.0";
|
|
sha256 = "sha256-xRFLgEJxa7cGkUBpMayw4nltg7Qcv7XIBo3OegL5mkU=";
|
|
|
|
manpages = skawarePackages.buildManPages {
|
|
pname = "s6-man-pages";
|
|
version = "2.13.1.0.1";
|
|
sha256 = "sha256-SChxod/W/KxxSic4ttXigwgRWMWLl9Z66i2t7H1nn/s=";
|
|
description = "Port of the documentation for the s6 supervision suite to mdoc";
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
|
};
|
|
|
|
description = "skarnet.org's small & secure supervision software suite";
|
|
|
|
# NOTE lib: cannot split lib from bin at the moment,
|
|
# since some parts of lib depend on executables in bin.
|
|
# (the `*_startf` functions in `libs6`)
|
|
outputs = [
|
|
# "bin" "lib"
|
|
"out"
|
|
"dev"
|
|
"doc"
|
|
];
|
|
|
|
# TODO: nsss support
|
|
configureFlags = [
|
|
"--libdir=\${out}/lib"
|
|
"--libexecdir=\${out}/libexec"
|
|
"--dynlibdir=\${out}/lib"
|
|
"--bindir=\${out}/bin"
|
|
"--includedir=\${dev}/include"
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs.dev}/include"
|
|
"--with-include=${execline.dev}/include"
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
"--with-lib=${execline.lib}/lib"
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
"--with-dynlib=${execline.lib}/lib"
|
|
];
|
|
|
|
postInstall = ''
|
|
# remove all s6 executables from build directory
|
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
|
rm libs6.*
|
|
rm ./libs6auto.a.xyzzy
|
|
|
|
mv doc $doc/share/doc/s6/html
|
|
mv examples $doc/share/doc/s6/examples
|
|
'';
|
|
|
|
}
|