diff --git a/src/dependencies/wivrn_deps.rs b/src/dependencies/wivrn_deps.rs index a571f8f..394e269 100644 --- a/src/dependencies/wivrn_deps.rs +++ b/src/dependencies/wivrn_deps.rs @@ -20,6 +20,18 @@ fn wivrn_deps() -> Vec { dep_openxr(), dep_vulkan_icd_loader(), dep_vulkan_headers(), + Dependency { + name: "patch".into(), + dep_type: DepType::Executable, + filename: "patch".into(), + packages: HashMap::from([ + (LinuxDistro::Arch, "patch".into()), + (LinuxDistro::Debian, "patch".into()), + (LinuxDistro::Fedora, "patch".into()), + (LinuxDistro::Alpine, "patch".into()), + (LinuxDistro::Gentoo, "sys-devel/patch".into()), + ]), + }, Dependency { name: "x264-dev".into(), dep_type: DepType::Include,