From 1dbc3047591787a4b8cd4001124ee0a3389d77d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 4 Jun 2023 20:46:53 +0200 Subject: [PATCH] google-cloud-cpp: extend .meta.platforms The default is x86_64-linux only, but we build many packages for aarch64-linux on Hydra that depend on this (possibly indirectly), and it can be cumbersome when a dependency doesn't have its own job. --- pkgs/development/libraries/google-cloud-cpp/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/google-cloud-cpp/default.nix b/pkgs/development/libraries/google-cloud-cpp/default.nix index 1e5271d47709..e7445bd53e1a 100644 --- a/pkgs/development/libraries/google-cloud-cpp/default.nix +++ b/pkgs/development/libraries/google-cloud-cpp/default.nix @@ -126,6 +126,7 @@ stdenv.mkDerivation rec { license = with licenses; [ asl20 ]; homepage = "https://github.com/googleapis/google-cloud-cpp"; description = "C++ Idiomatic Clients for Google Cloud Platform services"; + platforms = [ "x86_64-linux" "aarch64-linux" ]; maintainers = with maintainers; [ cpcloud ]; }; }