Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
921 B
Nix
46 lines
921 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
zlib,
|
|
curl,
|
|
expat,
|
|
fuse,
|
|
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
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ fuse3 ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ fuse ];
|
|
|
|
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";
|
|
};
|
|
})
|