tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
vde2: explicitly disable parallel building
Sergei Trofimovich
4 years ago
98e3e2fe
b5560cfc
+7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
vde2
default.nix
+7
pkgs/tools/networking/vde2/default.nix
···
34
34
35
35
hardeningDisable = [ "format" ];
36
36
37
37
+
# Disable parallel build as it fails as:
38
38
+
# make: *** No rule to make target '../../src/lib/libvdemgmt.la',
39
39
+
# needed by 'libvdesnmp.la'. Stop.
40
40
+
# Next release should address it with
41
41
+
# https://github.com/virtualsquare/vde-2/commit/7dd9ed46d5dca125ca45d679ac9f3acbfb0f9300.patch
42
42
+
enableParallelBuilding = false;
43
43
+
37
44
meta = with lib; {
38
45
homepage = "https://github.com/virtualsquare/vde-2";
39
46
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";