d437f2c365
The function value cannot be serialized so nix-env was mad. Turns out we can just remove it like we do in `lib/systems/inspect.nix`.
33 lines
997 B
Nix
33 lines
997 B
Nix
{ lib }:
|
|
let
|
|
inherit (lib.systems) parse;
|
|
inherit (lib.systems.inspect) patterns;
|
|
|
|
abis = lib.mapAttrs (_: abi: builtins.removeAttrs abi [ "assertions" ]) parse.abis;
|
|
|
|
in rec {
|
|
all = [ {} ]; # `{}` matches anything
|
|
none = [];
|
|
|
|
arm = [ patterns.isAarch32 ];
|
|
aarch64 = [ patterns.isAarch64 ];
|
|
x86 = [ patterns.isx86 ];
|
|
i686 = [ patterns.isi686 ];
|
|
x86_64 = [ patterns.isx86_64 ];
|
|
mips = [ patterns.isMips ];
|
|
riscv = [ patterns.isRiscV ];
|
|
|
|
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 = abis.gnu; } ];
|
|
illumos = [ patterns.isSunOS ];
|
|
linux = [ patterns.isLinux ];
|
|
netbsd = [ patterns.isNetBSD ];
|
|
openbsd = [ patterns.isOpenBSD ];
|
|
unix = patterns.isUnix; # Actually a list
|
|
windows = [ patterns.isWindows ];
|
|
|
|
inherit (lib.systems.doubles) mesaPlatforms;
|
|
}
|