borgbackup: remove llfuse dependency

This commit is contained in:
Jack Rosenberg
2026-05-21 14:23:44 +02:00
parent 28c7da6f4c
commit 670c599645
+9 -5
View File
@@ -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"''