New comment by sug0 on void-packages repository https://github.com/void-linux/void-packages/pull/35823#issuecomment-1057518866 Comment: @travankor could you please add the following patch to your current PR? the current template does not allow zink drivers to be built on arm devices, in spite of the broadcom vulkan driver being enabled ```patch diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template index 1e9968fc..c90500de 100644 --- a/srcpkgs/mesa/template +++ b/srcpkgs/mesa/template @@ -113,6 +113,7 @@ if [ "$_have_nv" ]; then fi if [ "$_have_arm" ]; then + _have_vulkan=yes _gallium_drivers+=",kmsro" _gallium_drivers+=",v3d,vc4,freedreno,etnaviv,lima,panfrost" _vulkan_drivers+=",broadcom" ```