2015-01-16 01:10:07 +03:00
|
|
|
{ stdenv, execline, fetchgit, skalibs }:
|
2014-08-23 08:42:13 +04:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-09-24 06:07:35 +03:00
|
|
|
version = "2.2.1.0";
|
2014-08-23 08:42:13 +04:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-${version}";
|
|
|
|
|
2015-01-16 01:10:07 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6";
|
|
|
|
rev = "refs/tags/v${version}";
|
2015-09-24 06:07:35 +03:00
|
|
|
sha256 = "1g8gr3znxj8lyqpwrmgzh47yb64zldrvvvgpp1m4pb37k5k11bj9";
|
2014-08-23 08:42:13 +04:00
|
|
|
};
|
|
|
|
|
2014-12-23 19:06:27 +03:00
|
|
|
dontDisableStatic = true;
|
2014-08-23 08:42:13 +04:00
|
|
|
|
2015-01-16 01:10:07 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 19:06:27 +03: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 07:13:45 +03:00
|
|
|
] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ];
|
2014-08-23 08:42:13 +04: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 16:20:43 +03:00
|
|
|
description = "skarnet.org's small & secure supervision software suite";
|
2014-08-23 08:42:13 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 23:16:51 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-23 08:42:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|