summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:31:40 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:31:40 +0100
commitd1230c2e259ebdf892c7979fce041d84984ddb74 (patch)
treec3dadac4339fda4348321b0160b82f374093ea36 /src/config
parent32db7e255f18d8f9514de423bd65264d2090949e (diff)
Remove the idea of "system dependencies"
Because we want to be able to work on different distros, we cannot have a concept of "system dependencies", because each distro names their packages differently. The concept of installing stuff from a distro image can still be accomplished easily via environment variables. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/config')
-rw-r--r--src/config/util.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/config/util.rs b/src/config/util.rs
index ecd94c8..60709e2 100644
--- a/src/config/util.rs
+++ b/src/config/util.rs
@@ -6,8 +6,6 @@ pub fn default_package_print_format() -> String {
String::from(indoc::indoc!(r#"
{{i}} - {{p.name}} : {{p.version}}
{{#each p.sources}}Source: {{this.url}} - {{this.hash.hash}} ({{this.hash.type}}){{/each}}
- {{#if print_system_deps}}System Deps: {{ p.dependencies.system }} {{/if}}
- {{#if print_system_runtime_deps}}System runtime Deps: {{ p.dependencies.system_runtime }} {{/if}}
{{#if print_build_deps}}Build Deps: {{ p.dependencies.build }} {{/if}}
{{#if print_runtime_deps}}Runtime Deps: {{ p.dependencies.runtime }} {{/if}}