snabb: disable parallel building

https://hydra.nixos.org/build/64827817
This commit is contained in:
Orivej Desh 2017-11-28 18:11:06 +00:00
parent c917950c05
commit 6c60c6ec3b

View file

@ -31,7 +31,9 @@ stdenv.mkDerivation rec {
cp src/snabb $out/bin
'';
enableParallelBuilding = true;
# Dependencies are underspecified: "make -C src obj/arch/sse2_c.o" fails with
# "Fatal error: can't create obj/arch/sse2_c.o: No such file or directory".
enableParallelBuilding = false;
meta = with stdenv.lib; {
homepage = https://github.com/SnabbCo/snabbswitch;
@ -49,4 +51,3 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.lukego maintainers.domenkozar ];
};
}