treewide: fix typos of enableParallelBuilding (#340652)

This commit is contained in:
Artturin 2024-09-13 21:52:21 +03:00 committed by GitHub
commit eef771ccf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -97,7 +97,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

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