2009-09-23 13:45:02 -06:00
|
|
|
let lists = import ./lists.nix; in
|
|
|
|
|
2009-08-25 02:28:08 -06:00
|
|
|
rec {
|
2009-09-23 13:45:02 -06:00
|
|
|
gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */
|
2014-09-27 03:21:10 -06:00
|
|
|
linux = ["i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "mips64el-linux"];
|
2012-11-29 06:10:49 -07:00
|
|
|
darwin = ["x86_64-darwin"];
|
2013-11-04 12:23:47 -07:00
|
|
|
freebsd = ["i686-freebsd" "x86_64-freebsd"];
|
2009-10-09 13:42:59 -06:00
|
|
|
openbsd = ["i686-openbsd" "x86_64-openbsd"];
|
2009-10-28 06:25:06 -06:00
|
|
|
netbsd = ["i686-netbsd" "x86_64-netbsd"];
|
2014-05-29 06:47:07 -06:00
|
|
|
cygwin = ["i686-cygwin" "x86_64-cygwin"];
|
2014-04-03 11:01:43 -06:00
|
|
|
illumos = ["x86_64-solaris"];
|
|
|
|
unix = linux ++ darwin ++ freebsd ++ openbsd ++ netbsd ++ illumos;
|
|
|
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd ++ netbsd ++ illumos;
|
2012-05-20 14:21:55 -06:00
|
|
|
none = [];
|
2014-08-09 04:28:16 -06:00
|
|
|
allBut = platforms: lists.filter (x: !(builtins.elem x platforms)) all;
|
2016-02-09 14:34:31 -07:00
|
|
|
mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux" "armv7l-linux"];
|
2015-04-17 07:25:54 -06:00
|
|
|
x86_64 = ["x86_64-linux" "x86_64-darwin" "x86_64-freebsd" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin"];
|
2015-02-22 03:57:44 -07:00
|
|
|
i686 = ["i686-linux" "i686-freebsd" "i686-netbsd" "i686-cygwin"];
|
2015-04-17 07:25:54 -06:00
|
|
|
arm = ["armv5tel-linux" "armv6l-linux" "armv7l-linux" ];
|
|
|
|
mips = [ "mips64el-linux" ];
|
2009-08-25 02:28:08 -06:00
|
|
|
}
|