From 2d3c05ee411e87c9d9264dcbcf2ffb58292e5f00 Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Mon, 2 Mar 2026 11:37:06 -0500 Subject: [PATCH] Add `libva-devel` as required deps for `dnf` section (#50476) If I follow the steps outlined in https://zed.dev/docs/development/linux then `cargo run` on my Fedora workstation fails because the install script is missing `libva-devel` as a required dependency under `dnf` / `yum` sections. Before you mark this PR as ready for review, make sure that you have: - [ ] Added a solid test coverage and/or screenshots from doing manual testing - [ ] Done a self-review taking into account security and performance aspects - [ ] Aligned any UI changes with the [UI checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) Release Notes: - N/A --- script/linux | 1 + 1 file changed, 1 insertion(+) diff --git a/script/linux b/script/linux index c20f154eaf2f7e6b79c7f8539e9e8c13271c3ecd..b3bd03eacc2baf976744ff19b049b7781c330a8e 100755 --- a/script/linux +++ b/script/linux @@ -91,6 +91,7 @@ if [[ -n $dnf ]] || [[ -n $yum ]]; then alsa-lib-devel fontconfig-devel glib2-devel + libva-devel wayland-devel libxcb-devel libxkbcommon-x11-devel