mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-07-30 04:38:44 +00:00
fix: add jq to mercury dependencies
This commit is contained in:
parent
733c16978e
commit
7f8f3d8b58
1 changed files with 12 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue