fix: add jq to mercury dependencies

This commit is contained in:
Gabriele Musco 2024-04-14 15:33:12 +02:00
commit 7f8f3d8b58
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -8,6 +8,18 @@ use std::collections::HashMap;
fn mercury_deps() -> Vec<Dependency> {
vec![
dep_opencv(),
Dependency {
name: "jq".into(),
dep_type: DepType::Executable,
filename: "jq".into(),
packages: HashMap::from([
(LinuxDistro::Arch, "jq".into()),
(LinuxDistro::Debian, "jq".into()),
(LinuxDistro::Fedora, "jq".into()),
(LinuxDistro::Alpine, "jq".into()),
(LinuxDistro::Gentoo, "app-misc/jq".into()),
]),
},
Dependency {
name: "git-lfs".into(),
dep_type: DepType::Executable,