···1616 nativeBuildInputs = [ pkg-config ];1717 buildInputs = [ libnl popt ];18181919+ # Disable parallel build, errors:2020+ # *** No rule to make target 'libipvs/libipvs.a', needed by 'ipvsadm'. Stop.2121+ enableParallelBuilding = false;2222+1923 preBuild = ''2024 makeFlagsArray+=(2125 INCLUDE=$(pkg-config --cflags libnl-genl-3.0)
+4
pkgs/servers/hylafaxplus/default.nix
···8787 openldap # optional8888 pam # optional8989 ];9090+ # Disable parallel build, errors:9191+ # *** No rule to make target '../util/libfaxutil.so.7.0.4', needed by 'faxmsg'. Stop.9292+ enableParallelBuilding = false;9393+9094 postPatch = ". ${postPatch}";9195 dontAddPrefix = true;9296 postInstall = ". ${postInstall}";
+4
pkgs/servers/monitoring/munin/default.nix
···8989 sed -i '/ENV{PATH}/d' node/lib/Munin/Node/Service.pm9090 '';91919292+ # Disable parallel build, errors:9393+ # Can't locate Munin/Common/Defaults.pm in @INC ...9494+ enableParallelBuilding = false;9595+9296 # DESTDIR shouldn't be needed (and shouldn't have worked), but munin9397 # developers have forgotten to use PREFIX everywhere, so we use DESTDIR to9498 # ensure that everything is installed in $out.
+4
pkgs/tools/networking/netboot/default.nix
···13131414 hardeningDisable = [ "format" ];15151616+ # Disable parallel build, errors:1717+ # link: `parseopt.lo' is not a valid libtool object1818+ enableParallelBuilding = false;1919+1620 meta = with lib; {1721 description = "Mini PXE server";1822 maintainers = [ maintainers.raskin ];
+3
pkgs/tools/text/patchutils/generic.nix
···1515 buildInputs = [ perl ] ++ extraBuildInputs;1616 hardeningDisable = [ "format" ];17171818+ # tests fail when building in parallel1919+ enableParallelBuilding = false;2020+1821 postInstall = ''1922 for bin in $out/bin/{splitdiff,rediff,editdiff,dehtmldiff}; do2023 wrapProgram "$bin" \