mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-09-23 09:48:37 +00:00
parent
754395586e
commit
1cad5c4d1b
1 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,18 @@ use std::collections::HashMap;
|
||||||
fn xrizer_deps() -> Vec<Dependency> {
|
fn xrizer_deps() -> Vec<Dependency> {
|
||||||
vec![
|
vec![
|
||||||
dep_glslc(),
|
dep_glslc(),
|
||||||
|
Dependency {
|
||||||
|
name: "cargo".into(),
|
||||||
|
dep_type: DepType::Executable,
|
||||||
|
filename: "cargo".into(),
|
||||||
|
packages: HashMap::from([
|
||||||
|
(LinuxDistro::Arch, "rust".into()),
|
||||||
|
(LinuxDistro::Debian, "cargo".into()),
|
||||||
|
(LinuxDistro::Fedora, "cargo".into()),
|
||||||
|
(LinuxDistro::Alpine, "cargo".into()),
|
||||||
|
(LinuxDistro::Suse, "cargo".into()),
|
||||||
|
])
|
||||||
|
},
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "libxcb-glx".into(),
|
name: "libxcb-glx".into(),
|
||||||
dep_type: DepType::Include,
|
dep_type: DepType::Include,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue