summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-06-04 21:49:28 +0200
committerVladimír Čunát <v@cunat.cz>2023-06-04 21:51:26 +0200
commit36689480f32ff890eb578e8b7be3b7a6ea7f799a (patch)
treeec200845796e6d001fc774d6b655c12a7d300ad1
parentcfb9c8858e484ff5526243d7dae86bb09847d955 (diff)
downloadnixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar.gz
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar.bz2
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar.lz
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar.xz
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.tar.zst
nixpkgs-36689480f32ff890eb578e8b7be3b7a6ea7f799a.zip
google-cloud-cpp: schedule on big-parallel machines
This time for real I hope, not like around 07310e59a62ae8e5b7e15580e.
Otherwise it often takes 1-2 hours on Hydra, which seems unnecessary.
-rw-r--r--pkgs/development/libraries/google-cloud-cpp/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/google-cloud-cpp/default.nix b/pkgs/development/libraries/google-cloud-cpp/default.nix
index 1e5271d4770..34f1ab41ff9 100644
--- a/pkgs/development/libraries/google-cloud-cpp/default.nix
+++ b/pkgs/development/libraries/google-cloud-cpp/default.nix
@@ -122,6 +122,8 @@ stdenv.mkDerivation rec {
     "-DGOOGLE_CLOUD_CPP_ENABLE=${lib.concatStringsSep ";" apis}"
   ];
 
+  requiredSystemFeatures = [ "big-parallel" ];
+
   meta = with lib; {
     license = with licenses; [ asl20 ];
     homepage = "https://github.com/googleapis/google-cloud-cpp";