postgresql: disable parallel building on Darwin

There have been multiple reports of this failing.

Fixes https://github.com/NixOS/nixpkgs/issues/51093.
wip/yesman
Alyssa Ross 6 years ago
parent af31c4ef4c
commit c41c195dc5
No known key found for this signature in database
GPG Key ID: C4844408C0657052
  1. 2
      pkgs/servers/sql/postgresql/default.nix

@ -20,7 +20,7 @@ let
++ lib.optionals (atLeast "9.6" && !stdenv.isDarwin) [ systemd ]
++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ];
enableParallelBuilding = true;
enableParallelBuilding = !stdenv.isDarwin;
makeFlags = [ "world" ];

Loading…
Cancel
Save