forked from mirrors/nixpkgs
e0c225857f
skalibs: 2.4.7.0 -> 2.3.9.0 execline: 2.1.4.0 -> 2.1.4.5 s6: 2.2.1.0 -> 2.2.4.3 s6-rc: 0.0.1.0 -> 0.0.2.1 s6-portable-utils: 2.0.5.2 -> 2.0.5.3 s6-linux-utils: 2.0.2.0 -> 2.0.2.3 s6-dns: 2.0.0.4 -> 2.0.0.7 s6-networking: 2.1.0.1 -> 2.1.0.4
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, execline, fetchgit, skalibs, s6 }:
|
|
|
|
let
|
|
|
|
version = "0.0.2.1";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "s6-rc-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/s6-rc";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0x9ghi1f7zqphzlzyz67z7n7mnnyxf1hghi2wa2f8cdl70nfdi2f";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|