mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #38678 from mkaito/gopass-completion
gopass: Install shell completion scripts
This commit is contained in:
commit
86fc330684
1 changed files with 10 additions and 0 deletions
|
@ -20,6 +20,16 @@ buildGoPackage rec {
|
||||||
gnupg
|
gnupg
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p \
|
||||||
|
$bin/share/bash-completion/completions \
|
||||||
|
$bin/share/zsh/site-functions \
|
||||||
|
$bin/share/fish/vendor_completions.d
|
||||||
|
$bin/bin/gopass completion bash > $bin/share/bash-completion/completions/_gopass
|
||||||
|
$bin/bin/gopass completion zsh > $bin/share/zsh/site-functions/_gopass
|
||||||
|
$bin/bin/gopass completion fish > $bin/share/fish/vendor_completions.d/gopass.fish
|
||||||
|
'';
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $bin/bin/gopass \
|
wrapProgram $bin/bin/gopass \
|
||||||
--prefix PATH : "${wrapperPath}"
|
--prefix PATH : "${wrapperPath}"
|
||||||
|
|
Loading…
Reference in a new issue