1{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }:
2
3buildDunePackage rec {
4 pname = "bisect_ppx";
5 version = "2.6.1";
6
7 src = fetchFromGitHub {
8 owner = "aantron";
9 repo = "bisect_ppx";
10 rev = version;
11 sha256 = "sha256-YeLDlH3mUbVEY4OmzlrvSwVUav3uMtSsTFlOsQKnz84=";
12 };
13
14 minimumOCamlVersion = "4.08";
15 useDune2 = true;
16
17 buildInputs = [
18 cmdliner
19 ppxlib
20 ];
21
22 meta = with lib; {
23 description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested.";
24 license = licenses.mit;
25 homepage = "https://github.com/aantron/bisect_ppx";
26 maintainers = with maintainers; [ ];
27 };
28}