configuring more packages

This commit is contained in:
Matthew Stobbs
2025-01-22 22:14:49 -07:00
parent 852331a692
commit 6fa5a46701
88 changed files with 388 additions and 492 deletions

20
tasks/pkgs/nushell.yml Normal file
View File

@@ -0,0 +1,20 @@
---
- ansible.builtin.include_vars:
file: nushell.yml
name: _nushell
- name: install macOS dependencies
set_fact:
nushell_pkgdeps:
- cargo
- libxcb
- openssl-devel
- libX11-devel
nushell_altdeps:
- build/nushell.yml
- "pkgs/{{ ansible_os_family }}/carapace.yml"
- name: append to pkgs
set_fact:
syspkgs: "{{ syspkgs + nushell_pkgdeps }}"
srcpkgs: "{{ srcpkgs + nushell_altdeps }}"