1{system ? builtins.currentSystem}:
2
3let
4 make = crossSystem: import ./make-bootstrap-tools.nix {
5 localSystem = { inherit system; };
6 inherit crossSystem;
7 };
8 lib = import ../../../lib;
9in lib.mapAttrs (n: make) (with lib.systems.examples; {
10 armv5tel = sheevaplug;
11 scaleway = scaleway-c1;
12 pogoplug4 = pogoplug4;
13 armv6l = raspberryPi;
14 armv7l = armv7l-hf-multiplatform;
15 aarch64 = aarch64-multiplatform;
16 x86_64-musl = musl64;
17 armv6l-musl = muslpi;
18 aarch64-musl = aarch64-multiplatform-musl;
19 riscv64 = riscv64;
20 powerpc64le = powernv;
21 powerpc64le-musl = musl-power;
22})