postgresql: enable parallel building on darwin

This was disabled to fix #51093. The related discussion upstream revealed that this
has been fixed in [1] for v12+. Since v12 is our oldest supported version right now,
we should be able to safely enable parallel building on darwin again.

Furthermore, it seems that this kind of issue was also fixed in #51221 and #51408
for the general case.

[1]: 826eff57c4
This commit is contained in:
Wolfgang Walther 2024-03-06 21:42:37 +01:00
parent 4adcc41cd9
commit 9f90ad30fa
No known key found for this signature in database
GPG key ID: B39893FA5F65CAE1

View file

@ -82,7 +82,7 @@ let
]
++ lib.optionals jitSupport [ llvmPackages.llvm.dev nukeReferences patchelf ];
enableParallelBuilding = !stdenv'.isDarwin;
enableParallelBuilding = true;
separateDebugInfo = true;