summary refs log tree commit diff
path: root/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
blob: 6c217be4ea3c7b706c764c2e79dda001847cce1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{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;
  riscv64 = make riscv64;
}