We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba561f8 commit d0f3296Copy full SHA for d0f3296
1 file changed
pkgs/servers/sql/postgresql/generic.nix
@@ -398,9 +398,10 @@ let
398
# Tests just get stuck on macOS 14.x for v13 and v14
399
!(stdenv'.hostPlatform.isDarwin && olderThan "15")
400
&&
401
- # Likely due to rosetta emulation:
+ # x86: Likely due to rosetta emulation:
402
# FATAL: could not create shared memory segment: Cannot allocate memory
403
- !(stdenv'.hostPlatform.isDarwin && stdenv'.hostPlatform.isx86_64);
+ # aarch64: not sure why, e.g. https://hydra.nixos.org/build/292573408/nixlog/7
404
+ !(stdenv'.hostPlatform.isDarwin);
405
installCheckTarget = "check-world";
406
407
passthru =
0 commit comments