qusal/salt/dev/install-c-tools.sls
wassp a405d99924 feat: Add C configuration to dev qube
- also fix the submodule
2025-04-20 18:09:01 +02:00

30 lines
603 B
Text

{#
SPDX-FileCopyrightText: 2023 - 2025 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
include:
- utils.tools.common.update
"{{ slsdotpath }}-installed-python-tools":
pkg.installed:
- require:
- sls: utils.tools.common.update
- install_recommends: False
- skip_suggestions: True
- setopt: "install_weak_deps=False"
- pkgs:
- clangd
- clang-tidy
- cmake
- cscope
- cppcheck
- ddd
- gdb
- manpages-dev
- universal-ctags
{% endif %}