1{ system, bootstrapFiles }:
2
3derivation {
4 name = "bootstrap-tools";
5
6 builder = bootstrapFiles.busybox;
7
8 args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
9
10 tarball = bootstrapFiles.bootstrapTools;
11
12 inherit system;
13
14 # Needed by the GCC wrapper.
15 langC = true;
16 langCC = true;
17 isGNU = true;
18}