google-cloud-cpp: downgrade a warning on aarch64-linux

I don't know why it started now, but it only happens in tests,
and generally -Werror is more suitable for upstreams than downstreams.
This commit is contained in:
Vladimír Čunát
2023-06-04 20:57:15 +02:00
parent 1dbc304759
commit efd6f2ac30
@@ -68,6 +68,9 @@ stdenv.mkDerivation rec {
protobuf
];
# https://hydra.nixos.org/build/222679737/nixlog/3/tail
NIX_CFLAGS_COMPILE = if stdenv.isAarch64 then "-Wno-error=maybe-uninitialized" else null;
doInstallCheck = true;
preInstallCheck =