vde2: explicitly disable parallel building

main
Sergei Trofimovich 3 years ago
parent b5560cfc5e
commit 98e3e2fe9e
  1. 7
      pkgs/tools/networking/vde2/default.nix

@ -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";

Loading…
Cancel
Save