2009-09-23 21:45:02 +02:00
|
|
|
let lists = import ./lists.nix; in
|
|
|
|
|
2009-08-25 10:28:08 +02:00
|
|
|
rec {
|
2009-09-23 21:45:02 +02:00
|
|
|
gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */
|
2012-11-29 14:10:49 +01:00
|
|
|
linux = ["i686-linux" "x86_64-linux" "powerpc-linux" "armv5tel-linux" "armv7l-linux" "mips64el-linux"];
|
|
|
|
darwin = ["x86_64-darwin"];
|
2009-08-27 09:17:57 +02:00
|
|
|
freebsd = ["i686-freebsd" "x86_64-freebsd" "powerpc-freebsd"];
|
2009-10-09 21:42:59 +02:00
|
|
|
openbsd = ["i686-openbsd" "x86_64-openbsd"];
|
2009-10-28 13:25:06 +01:00
|
|
|
netbsd = ["i686-netbsd" "x86_64-netbsd"];
|
2009-08-25 10:28:08 +02:00
|
|
|
cygwin = ["i686-cygwin"];
|
2009-10-09 21:42:59 +02:00
|
|
|
unix = linux ++ darwin ++ freebsd ++ openbsd;
|
|
|
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
2012-05-20 22:21:55 +02:00
|
|
|
none = [];
|
2009-08-25 10:28:08 +02:00
|
|
|
allBut = platform: lists.filter (x: platform != x) all;
|
2013-02-17 00:28:22 +01:00
|
|
|
mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux"];
|
2009-08-25 10:28:08 +02:00
|
|
|
}
|