Merge pull request #292467 from maxbrunet/feat/oci-cli/completion

oci-cli: install shell completion
This commit is contained in:
Sandro 2024-03-25 22:55:59 +01:00 committed by GitHub
commit eaa7f097ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 0 deletions

View File

@ -2,6 +2,7 @@
, fetchFromGitHub
, fetchPypi
, python3
, installShellFiles
}:
let
@ -46,6 +47,8 @@ buildPythonApplication rec {
hash = "sha256-yooEZuSIw2EMJVyT/Z/x4hJi8a1F674CtsMMGkMAYLg=";
};
nativeBuildInputs = [ installShellFiles ];
propagatedBuildInputs = [
arrow
certifi
@ -73,6 +76,24 @@ buildPythonApplication rec {
--replace "oci==2.78.0" "oci"
'';
postInstall = ''
cat >oci.zsh <<EOF
#compdef oci
zmodload -i zsh/parameter
autoload -U +X bashcompinit && bashcompinit
if ! (( $+functions[compdef] )) ; then
autoload -U +X compinit && compinit
fi
EOF
cat src/oci_cli/bin/oci_autocomplete.sh >>oci.zsh
installShellCompletion \
--cmd oci \
--bash src/oci_cli/bin/oci_autocomplete.sh \
--zsh oci.zsh
'';
# https://github.com/oracle/oci-cli/issues/187
doCheck = false;