mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
3c8ae01a45
Otherwise obscure cross-compilations are hampered. `all` breaks all but the initial derivation (which we can't even write yet) in an open world setting however, so we really shouldn't have it.
30 lines
842 B
Nix
30 lines
842 B
Nix
{ lib }:
|
|
let
|
|
inherit (lib.systems) parse;
|
|
inherit (lib.systems.inspect) patterns;
|
|
|
|
in rec {
|
|
all = [ {} ]; # `{}` matches anything
|
|
none = [];
|
|
|
|
arm = [ patterns.isArm ];
|
|
aarch64 = [ patterns.isAarch64 ];
|
|
x86 = [ patterns.isx86 ];
|
|
i686 = [ patterns.isi686 ];
|
|
x86_64 = [ patterns.isx86_64 ];
|
|
mips = [ patterns.isMips ];
|
|
|
|
cygwin = [ patterns.isCygwin ];
|
|
darwin = [ patterns.isDarwin ];
|
|
freebsd = [ patterns.isFreeBSD ];
|
|
# Should be better, but MinGW is unclear, and HURD is bit-rotted.
|
|
gnu = [ { kernel = parse.kernels.linux; abi = parse.abis.gnu; } ];
|
|
illumos = [ patterns.isSunOS ];
|
|
linux = [ patterns.isLinux ];
|
|
netbsd = [ patterns.isNetBSD ];
|
|
openbsd = [ patterns.isOpenBSD ];
|
|
unix = patterns.isUnix; # Actually a list
|
|
|
|
inherit (lib.systems.doubles) mesaPlatforms;
|
|
}
|