3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #199525 from symphorien/duply-path

duply: fix ftp usage
This commit is contained in:
Guillaume Girol 2022-11-04 15:31:59 +00:00 committed by GitHub
commit e94abaf9c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
mkdir -p "$out/bin"
mkdir -p "$out/share/man/man1"
install -vD duply "$out/bin"
wrapProgram "$out/bin/duply" --set PATH \
wrapProgram "$out/bin/duply" --prefix PATH : \
${lib.makeBinPath [ coreutils python3 duplicity gawk gnupg bash gnugrep txt2man which ]}
"$out/bin/duply" txt2man > "$out/share/man/man1/duply.1"
'';