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:
parent
0dcbfcc975
commit
e979e478a4
1 changed files with 1 additions and 1 deletions
|
@ -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"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue