Files
nixpkgs/pkgs/development/ocaml-modules/afl-persistent/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

52 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
ocaml,
findlib,
opaline,
}:
stdenv.mkDerivation rec {
pname = "afl-persistent";
version = "1.3";
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchFromGitHub {
owner = "stedolan";
repo = "ocaml-${pname}";
rev = "v${version}";
sha256 = "06yyds2vcwlfr2nd3gvyrazlijjcrd1abnvkfpkaadgwdw3qam1i";
};
strictDeps = true;
nativeBuildInputs = [
ocaml
findlib
];
# don't run tests in buildPhase
# don't overwrite test binary
postPatch = ''
sed -i 's/ && \.\/test$//' build.sh
sed -i '/^ocamlopt.*test.ml -o test$/ s/$/2/' build.sh
patchShebangs build.sh
'';
buildPhase = "./build.sh";
installPhase = ''
${opaline}/bin/opaline -prefix $out -libdir $out/lib/ocaml/${ocaml.version}/site-lib/ ${pname}.install
'';
doCheck = true;
checkPhase = "./_build/test && ./_build/test2";
meta = {
homepage = "https://github.com/stedolan/ocaml-afl-persistent";
description = "Persistent-mode afl-fuzz for ocaml";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.sternenseemann ];
};
}