ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / stdenv / linux / make-bootstrap-tools-cross.nix
blobd9105c8c449938d6eff0d886eff7a16b9ab011c1
1 {system ? builtins.currentSystem}:
3 let
4   inherit (releaseLib) lib;
5   releaseLib = import ../../top-level/release-lib.nix {
6     # We're not using any functions from release-lib.nix that look at
7     # supportedSystems.
8     supportedSystems = [];
9   };
11   make = crossSystem: import ./make-bootstrap-tools.nix {
12     pkgs = releaseLib.pkgsForCross crossSystem system;
13   };
14 in lib.mapAttrs (n: make) (with lib.systems.examples; {
15   armv5tel   = sheevaplug;
16   pogoplug4  = pogoplug4;
17   armv6l     = raspberryPi;
18   armv7l     = armv7l-hf-multiplatform;
19   aarch64    = aarch64-multiplatform;
20   x86_64-musl  = musl64;
21   armv6l-musl  = muslpi;
22   aarch64-musl = aarch64-multiplatform-musl;
23   riscv64 = riscv64;
24   mips64el-linux-gnuabin32 = mips64el-linux-gnuabin32;
25   mips64el-linux-gnuabi64  = mips64el-linux-gnuabi64;
26   mipsel-linux-gnu         = mipsel-linux-gnu;
27   powerpc64 = ppc64;
28   powerpc64-musl = ppc64-musl;
29   powerpc64le = powernv;
30   powerpc64le-musl = musl-power;