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:
Robert Schütz 2022-05-31 01:26:14 +00:00
parent a3859b796f
commit 43337d4f93

View File

@ -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 = ''