borgbackup: remove llfuse dependency
This commit is contained in:
@@ -70,11 +70,15 @@ python.pkgs.buildPythonApplication (finalAttrs: {
|
||||
acl
|
||||
];
|
||||
|
||||
dependencies = with python.pkgs; [
|
||||
msgpack
|
||||
packaging
|
||||
(if stdenv.hostPlatform.isLinux then pyfuse3 else llfuse)
|
||||
];
|
||||
dependencies =
|
||||
with python.pkgs;
|
||||
[
|
||||
msgpack
|
||||
packaging
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
pyfuse3
|
||||
];
|
||||
|
||||
makeWrapperArgs = [
|
||||
''--prefix PATH ':' "${openssh}/bin"''
|
||||
|
||||
Reference in New Issue
Block a user