mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
mesa_noglu: make it meaningful even on darwin
In future we should change the mess, e.g. have libGL, libGLU and similar attributes.
This commit is contained in:
parent
8ce7550a9f
commit
0f7e530c9d
1 changed files with 2 additions and 1 deletions
|
@ -4784,7 +4784,8 @@ let
|
|||
|
||||
mesaSupported = lib.elem system lib.platforms.mesaPlatforms;
|
||||
|
||||
mesa_noglu = callPackage ../development/libraries/mesa { };
|
||||
mesa_noglu = if stdenv.isDarwin then darwinX11AndOpenGL
|
||||
else callPackage ../development/libraries/mesa { };
|
||||
mesa_drivers = mesa_noglu.drivers;
|
||||
mesa_glu = callPackage ../development/libraries/mesa-glu { };
|
||||
mesa = if stdenv.isDarwin then darwinX11AndOpenGL
|
||||
|
|
Loading…
Reference in a new issue