river{,-classic}: mark aarch64-linux as a badPlatform

These both run out of memory (using >100GiB) while building.

See also https://hydra.nixos.org/build/337732450
and https://hydra.nixos.org/build/337732451.
This commit is contained in:
Michael Daniels
2026-07-18 20:01:08 -04:00
parent e2db8789f5
commit 19a52e1c29
2 changed files with 8 additions and 0 deletions
@@ -104,5 +104,9 @@ stdenv.mkDerivation (finalAttrs: {
rodrgz
];
platforms = lib.platforms.linux;
badPlatforms = [
# Runs out of memory (using > 100GiB) while building
"aarch64-linux"
];
};
})
+4
View File
@@ -109,5 +109,9 @@ stdenv.mkDerivation (finalAttrs: {
];
mainProgram = "river";
platforms = lib.platforms.linux;
badPlatforms = [
# Runs out of memory (using > 100GiB) while building
"aarch64-linux"
];
};
})