We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ecfcd0b commit 0ed7328Copy full SHA for 0ed7328
pkgs/tools/networking/snabb/default.nix
@@ -31,7 +31,9 @@ stdenv.mkDerivation rec {
31
cp src/snabb $out/bin
32
'';
33
34
- enableParallelBuilding = true;
+ # 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;
37
38
meta = with stdenv.lib; {
39
homepage = https://github.com/SnabbCo/snabbswitch;
@@ -49,4 +51,3 @@ stdenv.mkDerivation rec {
49
51
maintainers = [ maintainers.lukego maintainers.domenkozar ];
50
52
};
53
}
-
0 commit comments