From 36689480f32ff890eb578e8b7be3b7a6ea7f799a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 4 Jun 2023 21:49:28 +0200 Subject: [PATCH] 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. --- pkgs/development/libraries/google-cloud-cpp/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/google-cloud-cpp/default.nix b/pkgs/development/libraries/google-cloud-cpp/default.nix index 1e5271d47709..34f1ab41ff9c 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";