nix: disable big-parallel for aws-sdk-cpp

aws-sdk-cpp only takes ~1m52s on a 4 core machine under 50% load
which does not justify the requirement on big parallel.

Tested with `nix-build -A nixVersions.nix_2_6.aws-sdk-cpp`.
This commit is contained in:
Sandro Jäckel
2022-03-08 14:09:53 +01:00
committed by Sandro Jäckel
parent a383bcb3c4
commit 0730df1a1a
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ stdenv.mkDerivation {
};
passthru = {
inherit boehmgc;
inherit aws-sdk-cpp boehmgc;
perl-bindings = perl.pkgs.toPerlModule (callPackage ./nix-perl.nix { inherit src version; });
};
@@ -24,6 +24,9 @@ let
customMemoryManagement = false;
}).overrideDerivation (args: {
patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ];
# only a stripped down version is build which takes a lot less resources to build
requiredSystemFeatures = null;
});
common = args: