summary refs log tree commit diff
path: root/pkgs/development/libraries/aws-sdk-cpp
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2021-04-26 00:30:45 +0000
committerLuke Granger-Brown <git@lukegb.com>2021-04-26 00:50:07 +0000
commit300d303d258e21bd989a4ff566fec3e06959c86f (patch)
treee2ef6b6a39697446b8300fe26dacde92b8c512cb /pkgs/development/libraries/aws-sdk-cpp
parentb1173688a83f7f30f26edf60e9f2ce13ba1187e5 (diff)
downloadnixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar.gz
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar.bz2
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar.lz
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar.xz
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.tar.zst
nixpkgs-300d303d258e21bd989a4ff566fec3e06959c86f.zip
aws-sdk-cpp: require big-parallel
This compiles in ~2h on a 2-core builder, and 10m on a big-parallel
machine.
Diffstat (limited to 'pkgs/development/libraries/aws-sdk-cpp')
-rw-r--r--pkgs/development/libraries/aws-sdk-cpp/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index d6fbb97014d..7fd7b2fbbdd 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -63,6 +63,9 @@ stdenv.mkDerivation rec {
     ./cmake-dirs.patch
   ];
 
+  # Builds in 2+h with 2 cores, and ~10m with a big-parallel builder.
+  requiredSystemFeatures = [ "big-parallel" ];
+
   meta = with lib; {
     description = "A C++ interface for Amazon Web Services";
     homepage = "https://github.com/awslabs/aws-sdk-cpp";