mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
d4063e0330
Fixes otherwise equivalent systems being treated as different by packages that compare `stdenv.*Platform`s using `==` operator.
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, pkgs, ... }:
|
|
let
|
|
nixpkgsFun = import ../../top-level;
|
|
in
|
|
lib.recurseIntoAttrs {
|
|
platformEquality =
|
|
let
|
|
configsLocal = [
|
|
# crossSystem is implicitly set to localSystem.
|
|
{
|
|
localSystem = { system = "x86_64-linux"; };
|
|
}
|
|
{
|
|
localSystem = { system = "aarch64-linux"; };
|
|
crossSystem = null;
|
|
}
|
|
# Both systems explicitly set to the same string.
|
|
{
|
|
localSystem = { system = "x86_64-linux"; };
|
|
crossSystem = { system = "x86_64-linux"; };
|
|
}
|
|
# Vendor and ABI inferred from system double.
|
|
{
|
|
localSystem = { system = "aarch64-linux"; };
|
|
crossSystem = { config = "aarch64-unknown-linux-gnu"; };
|
|
}
|
|
];
|
|
configsCross = [
|
|
# GNU is inferred from double, but config explicitly requests musl.
|
|
{
|
|
localSystem = { system = "aarch64-linux"; };
|
|
crossSystem = { config = "aarch64-unknown-linux-musl"; };
|
|
}
|
|
# Cross-compile from AArch64 to x86-64.
|
|
{
|
|
localSystem = { system = "aarch64-linux"; };
|
|
crossSystem = { system = "x86_64-unknown-linux-gnu"; };
|
|
}
|
|
];
|
|
|
|
pkgsLocal = map nixpkgsFun configsLocal;
|
|
pkgsCross = map nixpkgsFun configsCross;
|
|
in
|
|
assert lib.all (p: p.buildPlatform == p.hostPlatform) pkgsLocal;
|
|
assert lib.all (p: p.buildPlatform != p.hostPlatform) pkgsCross;
|
|
pkgs.emptyFile;
|
|
}
|