Skip to content

Commit 0ed7328

Browse files
committedNov 28, 2017
snabb: disable parallel building
https://hydra.nixos.org/build/64827817 (cherry picked from commit 6c60c6e)
1 parent ecfcd0b commit 0ed7328

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎pkgs/tools/networking/snabb/default.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ stdenv.mkDerivation rec {
3131
cp src/snabb $out/bin
3232
'';
3333

34-
enableParallelBuilding = true;
34+
# Dependencies are underspecified: "make -C src obj/arch/sse2_c.o" fails with
35+
# "Fatal error: can't create obj/arch/sse2_c.o: No such file or directory".
36+
enableParallelBuilding = false;
3537

3638
meta = with stdenv.lib; {
3739
homepage = https://github.com/SnabbCo/snabbswitch;
@@ -49,4 +51,3 @@ stdenv.mkDerivation rec {
4951
maintainers = [ maintainers.lukego maintainers.domenkozar ];
5052
};
5153
}
52-

0 commit comments

Comments
 (0)
Please sign in to comment.