mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-02 22:29:01 +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> {
|
fn mercury_deps() -> Vec<Dependency> {
|
||||||
vec![
|
vec![
|
||||||
dep_opencv(),
|
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 {
|
Dependency {
|
||||||
name: "git-lfs".into(),
|
name: "git-lfs".into(),
|
||||||
dep_type: DepType::Executable,
|
dep_type: DepType::Executable,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue