2015-01-15 23:10:07 +01:00
|
|
|
{ stdenv, execline, fetchgit, skalibs }:
|
2014-08-23 06:42:13 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-03-29 06:13:45 +02:00
|
|
|
version = "2.1.3.0";
|
2014-08-23 06:42:13 +02:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-${version}";
|
|
|
|
|
2015-01-15 23:10:07 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6";
|
|
|
|
rev = "refs/tags/v${version}";
|
2015-03-29 06:13:45 +02:00
|
|
|
sha256 = "0dnwkdxqjv5awdgwxci1spcx1s13y5s9wd8ccskwv1rymvpgn8b3";
|
2014-08-23 06:42:13 +02:00
|
|
|
};
|
|
|
|
|
2014-12-23 17:06:27 +01:00
|
|
|
dontDisableStatic = true;
|
2014-08-23 06:42:13 +02:00
|
|
|
|
2015-01-15 23:10:07 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 17:06:27 +01:00
|
|
|
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"
|
2015-03-29 06:13:45 +02:00
|
|
|
] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ];
|
2014-08-23 06:42:13 +02:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace "src/daemontools-extras/s6-log.c" \
|
|
|
|
--replace '"execlineb"' '"${execline}/bin/execlineb"'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6/;
|
2014-11-11 14:20:43 +01:00
|
|
|
description = "skarnet.org's small & secure supervision software suite";
|
2014-08-23 06:42:13 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 22:16:51 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-23 06:42:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|