bindfs: drop fuse2

This commit is contained in:
Jack Rosenberg
2026-06-05 13:22:07 +02:00
parent e91830af5e
commit 3f00ce6ea2
+2 -2
View File
@@ -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";