forked from mirrors/nixpkgs
s6-networking: update to 2.0.1.0
This commit is contained in:
parent
ffed4e93be
commit
1459600c36
|
@ -1,30 +1,36 @@
|
||||||
{ stdenv, execline, fetchurl, s6Dns, skalibs }:
|
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "2.0.0.0";
|
version = "2.0.1.0";
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "s6-networking-${version}";
|
name = "s6-networking-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "http://www.skarnet.org/software/s6-networking/${name}.tar.gz";
|
url = "git://git.skarnet.org/s6-networking";
|
||||||
sha256 = "0k2i0g5lsvh1gz90ixwdip1pngj9vd45d4fpmdg075vd8zhh7j37";
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "1q094x8x99cy0kkq74kfw1rd9kmp6ynpz9ahx0lviz05n9paq7ya";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontDisableStatic = true;
|
dontDisableStatic = true;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
||||||
"--with-include=${skalibs}/include"
|
"--with-include=${skalibs}/include"
|
||||||
"--with-include=${execline}/include"
|
"--with-include=${execline}/include"
|
||||||
|
"--with-include=${s6}/include"
|
||||||
"--with-include=${s6Dns}/include"
|
"--with-include=${s6Dns}/include"
|
||||||
"--with-lib=${skalibs}/lib"
|
"--with-lib=${skalibs}/lib"
|
||||||
"--with-lib=${execline}/lib"
|
"--with-lib=${execline}/lib"
|
||||||
|
"--with-lib=${s6}/lib"
|
||||||
"--with-lib=${s6Dns}/lib"
|
"--with-lib=${s6Dns}/lib"
|
||||||
"--with-dynlib=${skalibs}/lib"
|
"--with-dynlib=${skalibs}/lib"
|
||||||
"--with-dynlib=${execline}/lib"
|
"--with-dynlib=${execline}/lib"
|
||||||
|
"--with-dynlib=${s6}/lib"
|
||||||
"--with-dynlib=${s6Dns}/lib"
|
"--with-dynlib=${s6Dns}/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue