mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
889 B
Bash
34 lines
889 B
Bash
#!/usr/bin/env bash
|
|
|
|
_nixos-container() {
|
|
local cur prev opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
opts="list create destroy restart start stop status update login root-login run show-ip show-host-key"
|
|
startstop_opts=$(nixos-container list)
|
|
update_opts="--config"
|
|
|
|
if [[ "$prev" == "nixos-container" ]]
|
|
then
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
return 0
|
|
fi
|
|
|
|
if [[ $(echo "$opts" | grep "$prev") ]]
|
|
then
|
|
if [[ "$prev" == "start" || "$prev" == "stop" ]]
|
|
then
|
|
COMPREPLY=( $(compgen -W "${startstop_opts}" -- ${cur}) )
|
|
return 0
|
|
elif [[ "$prev" == "update" ]]
|
|
then
|
|
COMPREPLY=( $(compgen -W "${update_opts}" -- ${cur}) )
|
|
return 0
|
|
fi
|
|
fi
|
|
}
|
|
|
|
complete -F _nixos-container nixos-container
|
|
|