diff --git a/pkgs/by-name/bi/bindfs/package.nix b/pkgs/by-name/bi/bindfs/package.nix index 5cc6c5028bc2..fb6eeba43b53 100644 --- a/pkgs/by-name/bi/bindfs/package.nix +++ b/pkgs/by-name/bi/bindfs/package.nix @@ -5,8 +5,8 @@ fetchpatch, autoreconfHook, pkg-config, - fuse, fuse3, + macfuse-stubs, }: stdenv.mkDerivation (finalAttrs: { @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ]; - buildInputs = if stdenv.hostPlatform.isDarwin then [ fuse ] else [ fuse3 ]; + buildInputs = if stdenv.hostPlatform.isDarwin then [ macfuse-stubs ] else [ fuse3 ]; configureFlags = lib.optional stdenv.hostPlatform.isDarwin "--disable-macos-fs-link";