Merge pull request #51142 from alyssais/postgres_parallel

postgresql: disable parallel building on Darwin
This commit is contained in:
Jörg Thalheim 2018-11-28 00:34:25 +00:00 committed by GitHub
commit c1ba7f4378
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" ];