Merge pull request #34996 from kolloch/restic

restic: add completions and man page to package
This commit is contained in:
Jörg Thalheim 2018-02-15 08:42:19 +00:00 committed by GitHub
commit aaeeff6fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; {