2015-09-25 02:15:36 +01:00
|
|
|
{ stdenv, execline, fetchgit, skalibs, s6 }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2016-03-30 17:15:20 +01:00
|
|
|
version = "0.0.2.1";
|
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}";
|
2016-03-30 17:15:20 +01:00
|
|
|
sha256 = "0x9ghi1f7zqphzlzyz67z7n7mnnyxf1hghi2wa2f8cdl70nfdi2f";
|
2015-09-25 02:15:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--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"
|
|
|
|
] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://skarnet.org/software/s6-rc/;
|
|
|
|
description = "a service manager for s6-based systems";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|