mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
5dfe7f928e
In5643714dea
, I changed pkgs/stdenv/linux/make-bootstrap-tools.nix to take a package set instead of system and localSystem arguments, but I forgot to update make-bootstrap-tools-cross.nix. Fixes:5643714dea
("stdenvBootstrapTools: inherit {cross,local}System")
30 lines
922 B
Nix
30 lines
922 B
Nix
{system ? builtins.currentSystem}:
|
|
|
|
let
|
|
inherit (releaseLib) lib;
|
|
releaseLib = import ../../top-level/release-lib.nix {
|
|
# We're not using any functions from release-lib.nix that look at
|
|
# supportedSystems.
|
|
supportedSystems = [];
|
|
};
|
|
|
|
make = crossSystem: import ./make-bootstrap-tools.nix {
|
|
pkgs = releaseLib.pkgsForCross crossSystem system;
|
|
};
|
|
in lib.mapAttrs (n: make) (with lib.systems.examples; {
|
|
armv5tel = sheevaplug;
|
|
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;
|
|
})
|