lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pkgsStatic.libGL: mark unsupported

+3 -1
+1
pkgs/development/libraries/mesa/default.nix
··· 500 500 changelog = "https://www.mesa3d.org/relnotes/${version}.html"; 501 501 license = with lib.licenses; [ mit ]; # X11 variant, in most files 502 502 platforms = lib.platforms.mesaPlatforms; 503 + badPlatforms = []; # Load bearing for libGL meta on Darwin. 503 504 maintainers = with lib.maintainers; [ primeos vcunat ]; # Help is welcome :) 504 505 }; 505 506 };
+2 -1
pkgs/development/libraries/mesa/stubs.nix
··· 82 82 description = "Stub bindings using " + (if stdenv.hostPlatform.isDarwin then "mesa" else "libglvnd"); 83 83 pkgConfigModules = [ "gl" "egl" "glesv1_cm" "glesv2" ]; 84 84 } // { 85 - inherit (if stdenv.hostPlatform.isDarwin then mesa.meta else libglvnd.meta) homepage license platforms; 85 + inherit (if stdenv.hostPlatform.isDarwin then mesa.meta else libglvnd.meta) 86 + homepage license platforms badPlatforms; 86 87 }; 87 88 })