duply: fix ftp usage

for ftp, duply depends on ltfp on PATH, which is not possible if the
wrapper resets PATH.

+1 -1
+1 -1
pkgs/tools/backup/duply/default.nix
··· 20 mkdir -p "$out/bin" 21 mkdir -p "$out/share/man/man1" 22 install -vD duply "$out/bin" 23 - wrapProgram "$out/bin/duply" --set PATH \ 24 ${lib.makeBinPath [ coreutils python3 duplicity gawk gnupg bash gnugrep txt2man which ]} 25 "$out/bin/duply" txt2man > "$out/share/man/man1/duply.1" 26 '';
··· 20 mkdir -p "$out/bin" 21 mkdir -p "$out/share/man/man1" 22 install -vD duply "$out/bin" 23 + wrapProgram "$out/bin/duply" --prefix PATH : \ 24 ${lib.makeBinPath [ coreutils python3 duplicity gawk gnupg bash gnugrep txt2man which ]} 25 "$out/bin/duply" txt2man > "$out/share/man/man1/duply.1" 26 '';