2015-09-25 02:15:36 +01:00
|
|
|
{ stdenv, execline, fetchgit, skalibs, s6 }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-11-12 22:39:09 +00:00
|
|
|
version = "0.3.0.0";
|
2015-09-25 02:15:36 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-rc-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6-rc";
|
|
|
|
rev = "refs/tags/v${version}";
|
2017-11-12 22:39:09 +00:00
|
|
|
sha256 = "174a3l92nkhxrx8gq36xmb5a7krj40iz1xdiii25nxwjfiw5ynfb";
|
2015-09-25 02:15:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
2016-07-31 20:41:56 +01:00
|
|
|
"--enable-absolute-paths"
|
2015-09-25 02:15:36 +01:00
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-include=${execline}/include"
|
|
|
|
"--with-include=${s6}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-lib=${execline}/lib"
|
|
|
|
"--with-lib=${s6}/lib/s6"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${execline}/lib"
|
|
|
|
"--with-dynlib=${s6}/lib"
|
2016-04-01 16:20:13 +01:00
|
|
|
]
|
|
|
|
++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ])
|
2017-03-26 23:30:41 +01:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
2015-09-25 02:15:36 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://skarnet.org/software/s6-rc/;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A service manager for s6-based systems";
|
2015-09-25 02:15:36 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|