Files
nixpkgs/pkgs/development/ocaml-modules/crowbar/default.nix
T
2025-12-11 15:21:52 +01:00

52 lines
965 B
Nix

{
lib,
stdenv,
buildDunePackage,
fetchFromGitHub,
cmdliner,
afl-persistent,
calendar,
fpath,
pprint,
uutf,
uunf,
uucp,
}:
buildDunePackage (finalAttrs: {
pname = "crowbar";
version = "0.2.2";
src = fetchFromGitHub {
owner = "stedolan";
repo = "crowbar";
tag = "v${finalAttrs.version}";
hash = "sha256-KGDOm9PMymFwyHoe7gp+rl+VxbbkLvnb8ypTXbImSgs=";
};
# disable xmldiff tests, so we don't need to package unmaintained and legacy pkgs
postPatch = "rm -rf examples/xmldiff";
propagatedBuildInputs = [
cmdliner
afl-persistent
];
checkInputs = [
calendar
fpath
pprint
uutf
uunf
uucp
];
# uunf is broken on aarch64
doCheck = !stdenv.hostPlatform.isAarch64;
meta = {
description = "Property fuzzing for OCaml";
homepage = "https://github.com/stedolan/crowbar";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sternenseemann ];
};
})