13e63f67dd
When implementing this reviewer request: https://github.com/NixOS/nixpkgs/pull/161158#discussion_r822256070 to move mips64el-unknown-linux-* from platforms.nix to examples.nix, I neglected to update the reference in make-bootstrap-tools-cross.nix. As a result, the hydra jobs to generate a bootstrap tarball for mips64el are not running: https://hydra.nixos.org/eval/1750828?filter=mips&compare=1750620&full=#tabs-errors This commit fixes the problem, so the hydra job can run. Once it does, I will submit a PR adding the trusted bootstrap tarball hash to pkgs/stdenv/linux/bootstrap-files/. Co-authored-by: sterni <sternenseemann@systemli.org>
27 lines
777 B
Nix
27 lines
777 B
Nix
{system ? builtins.currentSystem}:
|
|
|
|
let
|
|
make = crossSystem: import ./make-bootstrap-tools.nix {
|
|
localSystem = { inherit system; };
|
|
inherit crossSystem;
|
|
};
|
|
lib = import ../../../lib;
|
|
in lib.mapAttrs (n: make) (with lib.systems.examples; {
|
|
armv5tel = sheevaplug;
|
|
scaleway = scaleway-c1;
|
|
pogoplug4 = pogoplug4;
|
|
armv6l = raspberryPi;
|
|
armv7l = armv7l-hf-multiplatform;
|
|
aarch64 = aarch64-multiplatform;
|
|
x86_64-musl = musl64;
|
|
armv6l-musl = muslpi;
|
|
aarch64-musl = aarch64-multiplatform-musl;
|
|
riscv64 = riscv64;
|
|
mips64el-linux-gnuabin32 = mips64el-linux-gnuabin32;
|
|
mips64el-linux-gnuabi64 = mips64el-linux-gnuabi64;
|
|
powerpc64 = ppc64;
|
|
powerpc64-musl = ppc64-musl;
|
|
powerpc64le = powernv;
|
|
powerpc64le-musl = musl-power;
|
|
})
|