mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
11 lines
298 B
Meson
11 lines
298 B
Meson
|
foreach script : [ [ 'completion.zsh', '_nix' ], [ 'run-help-nix' ] ]
|
||
|
configure_file(
|
||
|
input : script[0],
|
||
|
output : script.get(1, script[0]),
|
||
|
install : true,
|
||
|
install_dir : get_option('datadir') / 'zsh/site-functions',
|
||
|
install_mode : 'rw-r--r--',
|
||
|
copy : true,
|
||
|
)
|
||
|
endforeach
|