treewide: fix typos of enableParallelBuilding

This commit is contained in:
David McFarland 2024-09-08 23:11:59 -03:00
parent ffe79ab08d
commit 7912e83ade
6 changed files with 7 additions and 7 deletions

View File

@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
NOCONFIGURE=1 sh autogen.sh
'';
enableParallelBuilds = true;
enableParallelBuilding = true;
meta = with lib; {
description = "TN3270 client Library";

View File

@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
NOCONFIGURE=1 sh ./autogen.sh
'';
enableParallelBuilds = true;
enableParallelBuilding = true;
meta = with lib; {
description = "3270 Virtual Terminal for GTK";

View File

@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
rm -rf $out/share/gsettings-schemas
'';
enableParallelBuilds = true;
enableParallelBuilding = true;
meta = with lib; {
description = "3270 Emulator for gtk";

View File

@ -96,7 +96,7 @@ stdenv.mkDerivation rec {
"-Wno-elaborated-enum-base"
]);
enableParallelBuilds = true;
enableParallelBuilding = true;
passthru.tests = {
inherit (python3.pkgs) grpcio-status grpcio-tools jaxlib;

View File

@ -52,12 +52,12 @@ buildDunePackage rec {
# This doesnt work in this case, as sail includes multiple packages in the same source tree
buildPhase = ''
runHook preBuild
dune build --release ''${enableParallelBuild:+-j $NIX_BUILD_CORES}
dune build --release ''${enableParallelBuilding:+-j $NIX_BUILD_CORES}
runHook postBuild
'';
checkPhase = ''
runHook preCheck
dune runtest ''${enableParallelBuild:+-j $NIX_BUILD_CORES}
dune runtest ''${enableParallelBuilding:+-j $NIX_BUILD_CORES}
runHook postCheck
'';
installPhase = ''

View File

@ -171,7 +171,7 @@ stdenv.mkDerivation rec {
rm -rf $out/{var,usr,etc}
'';
enableParallelBuild = true;
enableParallelBuilding = true;
passthru = rec {
netdata-go-modules = (buildGoModule {