From e7632e4b9c7b6bcd3e8d35a0643460ef32a26dac Mon Sep 17 00:00:00 2001 From: benaryorg Date: Tue, 9 Jun 2026 00:33:51 +0000 Subject: [PATCH] ceph: fuse3 Migrate from fuse (2.x) to fuse3 (3.x) as per [the fuse migration tracking issue](https://redirect.github.com/NixOS/nixpkgs/issues/526161). Note that the fuse specific patching (for remounting) is still required. There is an intersecting version check for 3, however it does not affect functionality. Signed-off-by: benaryorg --- pkgs/by-name/ce/ceph/ceph.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ce/ceph/ceph.nix b/pkgs/by-name/ce/ceph/ceph.nix index 0821b296aa4b..f5f4867a2365 100644 --- a/pkgs/by-name/ce/ceph/ceph.nix +++ b/pkgs/by-name/ce/ceph/ceph.nix @@ -66,7 +66,7 @@ # Optional Dependencies curl, expat, - fuse, + fuse3, libatomic_ops, libedit, libs3, @@ -106,7 +106,7 @@ let optYasm = shouldUsePkg yasm; optExpat = shouldUsePkg expat; optCurl = shouldUsePkg curl; - optFuse = shouldUsePkg fuse; + optFuse = shouldUsePkg fuse3; optLibedit = shouldUsePkg libedit; optLibatomic_ops = shouldUsePkg libatomic_ops; optLibs3 = shouldUsePkg libs3;