borgbackup: fix ssh binary location
Otherwise, borg might be unable to find its location
This commit is contained in:
parent
08e06e7d22
commit
f3b311af44
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl }:
|
{ stdenv, fetchurl, python3Packages, acl, lz4, openssl, openssh }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "borgbackup-${version}";
|
name = "borgbackup-${version}";
|
||||||
@ -27,6 +27,10 @@ python3Packages.buildPythonApplication rec {
|
|||||||
export BORG_LZ4_PREFIX="${lz4.dev}"
|
export BORG_LZ4_PREFIX="${lz4.dev}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
makeWrapperArgs = [
|
||||||
|
''--prefix PATH ':' "${openssh}/bin"''
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
make -C docs singlehtml
|
make -C docs singlehtml
|
||||||
mkdir -p $out/share/doc/borg
|
mkdir -p $out/share/doc/borg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user