mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
treewide: fix typos of enableParallelBuilding
This commit is contained in:
parent
ffe79ab08d
commit
7912e83ade
@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
|
||||
NOCONFIGURE=1 sh autogen.sh
|
||||
'';
|
||||
|
||||
enableParallelBuilds = true;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "TN3270 client Library";
|
||||
|
@ -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";
|
||||
|
@ -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";
|
||||
|
@ -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;
|
||||
|
@ -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 = ''
|
||||
|
@ -171,7 +171,7 @@ stdenv.mkDerivation rec {
|
||||
rm -rf $out/{var,usr,etc}
|
||||
'';
|
||||
|
||||
enableParallelBuild = true;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru = rec {
|
||||
netdata-go-modules = (buildGoModule {
|
||||
|
Loading…
Reference in New Issue
Block a user