1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

Merge pull request #10164 from hercules-ci/objc-workaround

package.nix: Apply OBJC_DISABLE_INITIALIZE_FORK_SAFETY workaround
This commit is contained in:
Théophane Hufschmitt 2024-03-07 06:26:15 +01:00 committed by GitHub
commit c4cfa18a33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -349,9 +349,15 @@ in {
# Needed for tests if we are not doing a build, but testing existing
# built Nix.
preInstallCheck = lib.optionalString (! doBuild) ''
mkdir -p src/nix-channel
'';
preInstallCheck =
lib.optionalString (! doBuild) ''
mkdir -p src/nix-channel
''
# See https://github.com/NixOS/nix/issues/2523
# Occurs often in tests since https://github.com/NixOS/nix/pull/9900
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
'';
separateDebugInfo = !stdenv.hostPlatform.isStatic;