atf: build with the bootstrap stdenv on Darwin

+11
+11
pkgs/top-level/all-packages.nix
··· 23761 }; 23762 } ../os-specific/darwin/darwin-min-version-hook/setup-hook.sh; 23763 23764 ### DEVELOPMENT / LIBRARIES / AGDA 23765 23766 agdaPackages = callPackage ./agda-packages.nix {
··· 23761 }; 23762 } ../os-specific/darwin/darwin-min-version-hook/setup-hook.sh; 23763 23764 + ### DEVELOPMENT / TESTING TOOLS 23765 + 23766 + atf = callPackage ../by-name/at/atf/package.nix { 23767 + stdenv = 23768 + # atf is a dependency of libiconv. Avoid an infinite recursion with `pkgsStatic` by using a bootstrap stdenv. 23769 + if stdenv.hostPlatform.isDarwin then 23770 + darwin.bootstrapStdenv 23771 + else 23772 + stdenv; 23773 + }; 23774 + 23775 ### DEVELOPMENT / LIBRARIES / AGDA 23776 23777 agdaPackages = callPackage ./agda-packages.nix {