fix: vulkan dependencies in `script/linux` (#9116)

Mart Zielman created

Just a quick pull request and a small fix, someone reported a dependency
was erroring for him, so I decided to open a small pull request. On top
of that, any `devel` header is not needed because Vulkan is only a
runtime dependency.

Release Notes:

- Fixed names of Vulkan dependencies that didn't exist

Change summary

script/linux | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

script/linux 🔗

@@ -14,7 +14,7 @@ if [[ -n $apt ]]; then
     libxkbcommon-x11-dev
     libssl-dev
     libzstd-dev
-    libvulkan-dev
+    libvulkan1
   )
   $maysudo "$apt" install -y "${deps[@]}"
   exit 0
@@ -31,7 +31,7 @@ if [[ -n $dnf ]]; then
     libxkbcommon-x11-devel
     openssl-devel
     libzstd-devel
-    libvulkan-devel
+    vulkan-loader
   )
   $maysudo "$dnf" install -y "${deps[@]}"
   exit 0
@@ -48,7 +48,7 @@ if [[ -n $zyp ]]; then
     libxkbcommon-x11-devel
     openssl-devel
     libzstd-devel
-    libvulkan-devel
+    vulkan-loader
   )
   $maysudo "$zyp" install -y "${deps[@]}"
   exit 0
@@ -82,7 +82,7 @@ if [[ -n $xbps ]]; then
     libzstd-devel
     openssl-devel
     wayland-devel
-    libvulkan-devel
+    vulkan-loader
   )
   $maysudo "$xbps" -Syu "${deps[@]}"
   exit 0