atf: build with the bootstrap stdenv on Darwin

This commit is contained in:
Randy Eckenrode 2024-09-07 22:01:39 -04:00
parent 826edbf719
commit a556a81f12
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -23761,6 +23761,17 @@ with pkgs;
};
} ../os-specific/darwin/darwin-min-version-hook/setup-hook.sh;
### DEVELOPMENT / TESTING TOOLS
atf = callPackage ../by-name/at/atf/package.nix {
stdenv =
# atf is a dependency of libiconv. Avoid an infinite recursion with `pkgsStatic` by using a bootstrap stdenv.
if stdenv.hostPlatform.isDarwin then
darwin.bootstrapStdenv
else
stdenv;
};
### DEVELOPMENT / LIBRARIES / AGDA
agdaPackages = callPackage ./agda-packages.nix {