pkgs/lib/platforms.nix: fix specification of mesaPlatforms

Mesa is supported on i686-linux, x86_64-linux, and x86_64-darwin.
This commit is contained in:
Peter Simons 2012-12-06 11:25:08 +01:00
parent 0dcbfcc975
commit e979e478a4

View file

@ -12,5 +12,5 @@ rec {
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
none = [];
allBut = platform: lists.filter (x: platform != x) all;
mesaPlatforms = linux;
mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
}