00b57f47c7
skalibs 2.3.2.0 execline 2.1.1.0 s6 2.1.3.0 st-portable-utils 2.0.4.0 s6-linux-utils 2.0.2.0 s6-networking 2.1.0.0 Also change path to s6 static library in s6-networking build.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ stdenv, execline, fetchgit, skalibs }:
|
|
|
|
let
|
|
|
|
version = "2.1.3.0";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "s6-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/s6";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0dnwkdxqjv5awdgwxci1spcx1s13y5s9wd8ccskwv1rymvpgn8b3";
|
|
};
|
|
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs}/include"
|
|
"--with-include=${execline}/include"
|
|
"--with-lib=${skalibs}/lib"
|
|
"--with-lib=${execline}/lib"
|
|
"--with-dynlib=${skalibs}/lib"
|
|
"--with-dynlib=${execline}/lib"
|
|
] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ];
|
|
|
|
preBuild = ''
|
|
substituteInPlace "src/daemontools-extras/s6-log.c" \
|
|
--replace '"execlineb"' '"${execline}/bin/execlineb"'
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.skarnet.org/software/s6/;
|
|
description = "skarnet.org's small & secure supervision software suite";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.isc;
|
|
};
|
|
|
|
}
|