netboot: disable parallel build

This commit is contained in:
FliegendeWurst 2022-01-29 11:33:46 +01:00
parent 47e9de5f86
commit 0022c16ae5

View File

@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
# Disable parallel build, errors:
# link: `parseopt.lo' is not a valid libtool object
enableParallelBuilding = false;
meta = with lib; {
description = "Mini PXE server";
maintainers = [ maintainers.raskin ];