about summary refs log tree commit diff
path: root/pkgs/stdenv/linux/bootstrap-tools-musl/default.nix
blob: 6118585d545f9cededef339506a165b12495bed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ system, bootstrapFiles }:

derivation {
  name = "bootstrap-tools";

  builder = bootstrapFiles.busybox;

  args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];

  tarball = bootstrapFiles.bootstrapTools;

  inherit system;

  # Needed by the GCC wrapper.
  langC = true;
  langCC = true;
  isGNU = true;
}