My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/ocaml-modules/bisect_ppx/default.nix

28 lines
598 B

{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ocaml-migrate-parsetree, ppx_tools_versioned }:
buildDunePackage rec {
pname = "bisect_ppx";
version = "2.5.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "aantron";
repo = "bisect_ppx";
rev = version;
sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868";
};
buildInputs = [
cmdliner
ocaml-migrate-parsetree
ppx_tools_versioned
];
meta = {
description = "Code coverage for OCaml";
license = lib.licenses.mit;
homepage = "https://github.com/aantron/bisect_ppx";
};
}