lazarus-qt: disable parallel build

This commit is contained in:
FliegendeWurst 2022-01-29 11:34:56 +01:00
parent c4da493b24
commit 32e714161b

View file

@ -45,6 +45,10 @@ stdenv.mkDerivation rec {
]
++ lib.optionals withQt [ libqt5pas qtbase ];
# Disable parallel build, errors:
# Fatal: (1018) Compilation aborted
enableParallelBuilding = false;
nativeBuildInputs = [
makeWrapper
] ++ lib.optional withQt wrapQtAppsHook;