From ba4c5b312cf36bbedb1549a306489a4419022f17 Mon Sep 17 00:00:00 2001 From: Philip White Date: Sat, 30 May 2026 17:27:46 -0700 Subject: [PATCH] rustic: switch fuse to fuse3 This addresses issue #526161. Tested on Linux x86_64 with `rustic mount` command, which is the one that uses fuse. --- pkgs/by-name/ru/rustic/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ru/rustic/package.nix b/pkgs/by-name/ru/rustic/package.nix index 2e269f7751ba..d53b777873b5 100644 --- a/pkgs/by-name/ru/rustic/package.nix +++ b/pkgs/by-name/ru/rustic/package.nix @@ -6,7 +6,7 @@ installShellFiles, nix-update-script, tzdata, - fuse, + fuse3, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeBuildInputs = [ installShellFiles ]; - buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ fuse ]; + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ fuse3 ]; nativeCheckInputs = [ tzdata ];