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 ++ ... */
|
2013-11-04 12:23:47 -07:00
|
|
|
linux = ["i686-linux" "x86_64-linux" "armv5tel-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"];
|
2009-08-25 02:28:08 -06:00
|
|
|
cygwin = ["i686-cygwin"];
|
2009-10-09 13:42:59 -06:00
|
|
|
unix = linux ++ darwin ++ freebsd ++ openbsd;
|
|
|
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
2012-05-20 14:21:55 -06:00
|
|
|
none = [];
|
2009-08-25 02:28:08 -06:00
|
|
|
allBut = platform: lists.filter (x: platform != x) all;
|
2013-02-16 16:28:22 -07:00
|
|
|
mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux"];
|
2009-08-25 02:28:08 -06:00
|
|
|
}
|