mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
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
@ -12,5 +12,5 @@ rec {
|
|||||||
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
||||||
none = [];
|
none = [];
|
||||||
allBut = platform: lists.filter (x: platform != x) all;
|
allBut = platform: lists.filter (x: platform != x) all;
|
||||||
mesaPlatforms = linux;
|
mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user