postgresql: disable parallel building on Darwin

There have been multiple reports of this failing.

Fixes https://github.com/NixOS/nixpkgs/issues/51093.
This commit is contained in:
Alyssa Ross 2018-11-27 20:13:23 +00:00
parent af31c4ef4c
commit c41c195dc5
No known key found for this signature in database
GPG Key ID: C4844408C0657052

View File

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