mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #34996 from kolloch/restic
restic: add completions and man page to package
This commit is contained in:
commit
aaeeff6fad
@ -19,8 +19,16 @@ buildGoPackage rec {
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $bin/bin/
|
||||
mkdir -p \
|
||||
$bin/bin \
|
||||
$bin/etc/bash_completion.d \
|
||||
$bin/share/zsh/vendor-completions \
|
||||
$bin/share/man/man1
|
||||
cp restic $bin/bin/
|
||||
$bin/bin/restic generate \
|
||||
--bash-completion $bin/etc/bash_completion.d/restic.sh \
|
||||
--zsh-completion $bin/share/zsh/vendor-completions/restic.sh \
|
||||
--man $bin/share/man/man1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user