fix: add patch dependency for wivrn

This commit is contained in:
Gabriele Musco 2024-04-14 15:42:58 +02:00
commit 72d5b784a7
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -20,6 +20,18 @@ fn wivrn_deps() -> Vec<Dependency> {
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,