tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
atf: build with the bootstrap stdenv on Darwin
Randy Eckenrode
1 year ago
a556a81f
826edbf7
+11
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
all-packages.nix
+11
pkgs/top-level/all-packages.nix
···
23761
23761
};
23762
23762
} ../os-specific/darwin/darwin-min-version-hook/setup-hook.sh;
23763
23763
23764
23764
+
### DEVELOPMENT / TESTING TOOLS
23765
23765
+
23766
23766
+
atf = callPackage ../by-name/at/atf/package.nix {
23767
23767
+
stdenv =
23768
23768
+
# atf is a dependency of libiconv. Avoid an infinite recursion with `pkgsStatic` by using a bootstrap stdenv.
23769
23769
+
if stdenv.hostPlatform.isDarwin then
23770
23770
+
darwin.bootstrapStdenv
23771
23771
+
else
23772
23772
+
stdenv;
23773
23773
+
};
23774
23774
+
23764
23775
### DEVELOPMENT / LIBRARIES / AGDA
23765
23776
23766
23777
agdaPackages = callPackage ./agda-packages.nix {