Merge pull request #34996 from kolloch/restic

restic: add completions and man page to package

authored by Jörg Thalheim and committed by GitHub aaeeff6f 394a8818

+9 -1
+9 -1
pkgs/tools/backup/restic/default.nix
··· 19 19 ''; 20 20 21 21 installPhase = '' 22 - mkdir -p $bin/bin/ 22 + mkdir -p \ 23 + $bin/bin \ 24 + $bin/etc/bash_completion.d \ 25 + $bin/share/zsh/vendor-completions \ 26 + $bin/share/man/man1 23 27 cp restic $bin/bin/ 28 + $bin/bin/restic generate \ 29 + --bash-completion $bin/etc/bash_completion.d/restic.sh \ 30 + --zsh-completion $bin/share/zsh/vendor-completions/restic.sh \ 31 + --man $bin/share/man/man1 24 32 ''; 25 33 26 34 meta = with stdenv.lib; {