20 lines
627 B
YAML
20 lines
627 B
YAML
---
|
|
- ansible.builtin.include_vars:
|
|
file: nushell.yml
|
|
name: _nushell
|
|
- ansible.builtin.set_fact:
|
|
pkgconfig_nushell: "{{ _nushell | ansible.builtin.combine(pkgconfig.nushell) }}"
|
|
|
|
- ansible.builtin.include_tasks:
|
|
file: pkgs/rust.yml
|
|
when: pkgconfig_rust is undefined
|
|
|
|
- ansible.builtin.include_tasks:
|
|
file: pkgs/carapace.yml
|
|
when: pkgconfig_carapace is undefined
|
|
|
|
- name: append to pkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + pkgsconfig_nushell.build_deps[ansible_os_family] }}"
|
|
cargopkgs: "{{ cargopkgs + pkgconfig_nushell.pkgs[ansible_os_family] + pkgconfig_nushell.pkgs_common }}"
|