Merge pull request #200356 from K900/aarch64-vulkan

mesa: build more Vulkan drivers on aarch64-linux

authored by K900 and committed by GitHub f2073b84 1462b539

+2 -1
+2 -1
pkgs/development/libraries/mesa/default.nix
··· 7 7 , libglvnd, libunwind 8 8 , vulkan-loader, glslang 9 9 , galliumDrivers ? ["auto"] 10 - , vulkanDrivers ? ["auto"] 10 + # upstream Mesa defaults to only enabling swrast (aka lavapipe) on aarch64 for some reason, so force building the others 11 + , vulkanDrivers ? [ "auto" ] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [ "broadcom" "freedreno" "panfrost" ] 11 12 , eglPlatforms ? [ "x11" ] ++ lib.optionals stdenv.isLinux [ "wayland" ] 12 13 , vulkanLayers ? lib.optionals (!stdenv.isDarwin) [ "device-select" "overlay" ] # No Vulkan support on Darwin 13 14 , OpenGL, Xplugin