summary refs log tree commit diff
path: root/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
blob: d08be79e6c55302b0b2cd1a0d8a3b2a14402e92f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{system ? builtins.currentSystem}:

let
  make = crossSystem: import ./make-bootstrap-tools.nix {
    localSystem = { inherit system; };
    inherit crossSystem;
  };

in with (import ../../../lib).systems.examples; {
  armv5tel   = make sheevaplug;
  scaleway   = make scaleway-c1;
  pogoplug4  = make pogoplug4;
  armv6l     = make raspberryPi;
  armv7l     = make armv7l-hf-multiplatform;
  aarch64    = make aarch64-multiplatform;
  x86_64-musl  = make musl64;
  i686-musl    = make musl32;
  armv6l-musl  = make muslpi;
  aarch64-musl = make aarch64-multiplatform-musl;
}