mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 06:04:14 +00:00
atf: build with the bootstrap stdenv on Darwin
This commit is contained in:
parent
826edbf719
commit
a556a81f12
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user