vde2: explicitly disable parallel building

This commit is contained in:
Sergei Trofimovich 2021-10-20 17:14:51 +01:00
parent b5560cfc5e
commit 98e3e2fe9e

View file

@ -34,6 +34,13 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
# Disable parallel build as it fails as:
# make: *** No rule to make target '../../src/lib/libvdemgmt.la',
# needed by 'libvdesnmp.la'. Stop.
# Next release should address it with
# https://github.com/virtualsquare/vde-2/commit/7dd9ed46d5dca125ca45d679ac9f3acbfb0f9300.patch
enableParallelBuilding = false;
meta = with lib; {
homepage = "https://github.com/virtualsquare/vde-2";
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";