buildMozillaMach: increase hydra timeout to 1d on darwin (#482486)

This commit is contained in:
Martin Weinelt
2026-01-22 07:29:33 +00:00
committed by GitHub
@@ -293,7 +293,14 @@ buildStdenv.mkDerivation {
pname = "${pname}-unwrapped";
version = packageVersion;
inherit src unpackPhase meta;
inherit src unpackPhase;
meta =
meta
// lib.optionalAttrs stdenv.hostPlatform.isDarwin {
# MacOS builds may take a long time and sometimes hit the default timeout
timeout = lib.max (24 * 60 * 60) (meta.timeout or 0);
};
outputs = [
"out"