borgbackup: need either pyfuse3 or llfuse
The former is preferred according to https://borgbackup.readthedocs.io/en/1.2.0/installation.html#dependencies but only works on Linux since it depends on libfuse3.
This commit is contained in:
parent
a3859b796f
commit
43337d4f93
1 changed files with 1 additions and 3 deletions
|
@ -44,11 +44,9 @@ python3.pkgs.buildPythonApplication rec {
|
|||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
cython
|
||||
llfuse
|
||||
msgpack
|
||||
packaging
|
||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||
pyfuse3
|
||||
(if stdenv.isLinux then pyfuse3 else llfuse)
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
|
|
Loading…
Reference in a new issue