mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
release.nix: add cross-compiled aarch64-darwin bootstrap tools
This commit is contained in:
parent
48519562e3
commit
4b569c17d7
1 changed files with 9 additions and 0 deletions
|
@ -176,6 +176,15 @@ let
|
|||
# Test a full stdenv bootstrap from the bootstrap tools definition
|
||||
inherit (bootstrap.test-pkgs) stdenv;
|
||||
};
|
||||
|
||||
# Cross compiled bootstrap tools
|
||||
aarch64-darwin =
|
||||
let
|
||||
bootstrap = import ../stdenv/darwin/make-bootstrap-tools.nix { system = "x86_64-darwin"; crossSystem = "aarch64-darwin"; };
|
||||
in {
|
||||
# Distribution only for now
|
||||
inherit (bootstrap) dist;
|
||||
};
|
||||
};
|
||||
|
||||
} // (mapTestOn ((packagePlatforms pkgs) // {
|
||||
|
|
Loading…
Reference in a new issue