workstation/arch/roles/toolbox/tasks/main.yml

16 lines
228 B
YAML
Raw Normal View History

- name: Install development tools
become: yes
pacman:
name:
- gcc
- make
- cmake
2020-05-27 11:19:38 +00:00
- autoconf
- which
- git
- w3m
- gnupg
2020-05-27 11:19:38 +00:00
- fakeroot
2020-07-07 13:38:35 +00:00
- ripgrep
state: present