avfs: migrate to fuse3

This commit is contained in:
Ryan Omasta
2026-05-30 23:12:05 -06:00
parent 711ab3d132
commit bb3e3431e6

View File

@@ -3,7 +3,7 @@
stdenv,
fetchurl,
pkg-config,
fuse,
fuse3,
xz,
zlib,
}:
@@ -19,11 +19,15 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [
fuse
fuse3
xz
zlib
];
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-function-pointer-types";
};
configureFlags = [
"--enable-library"
"--enable-fuse"