Files
Alex James 8ce4ed3994 afflib: build with fuse3 on Darwin
Use a common version of FUSE now that macfuse-stubs supports fuse3 (and
the alias is defined for Darwin).
2026-03-06 18:49:42 -08:00

46 lines
910 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
zlib,
curl,
expat,
fuse3,
openssl,
autoreconfHook,
python3,
}:
stdenv.mkDerivation (finalAttrs: {
version = "3.7.22";
pname = "afflib";
src = fetchFromGitHub {
owner = "sshock";
repo = "AFFLIBv3";
tag = "v${finalAttrs.version}";
sha256 = "sha256-pGInhJQBhFJhft/KfB3J3S9/BVp9D8TZ+uw2CUNVC+Q=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
zlib
curl
expat
openssl
python3
fuse3
];
env.CFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-DFUSE_DARWIN_ENABLE_EXTENSIONS=0";
meta = {
homepage = "http://afflib.sourceforge.net/";
description = "Advanced forensic format library";
platforms = lib.platforms.unix;
license = lib.licenses.bsdOriginal;
maintainers = [ lib.maintainers.raskin ];
downloadPage = "https://github.com/sshock/AFFLIBv3/tags";
};
})