biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / bisect_ppx / default.nix
blob114e638fa6c44fd8b9580f903cbc0daa5375def6
1 { lib, fetchFromGitHub, fetchpatch, buildDunePackage, cmdliner, ppxlib }:
3 buildDunePackage rec {
4   pname = "bisect_ppx";
5   version = "2.8.3";
7   src = fetchFromGitHub {
8     owner = "aantron";
9     repo = "bisect_ppx";
10     rev = version;
11     hash = "sha256-3qXobZLPivFDtls/3WNqDuAgWgO+tslJV47kjQPoi6o=";
12   };
14   minimalOCamlVersion = "4.11";
16   buildInputs = [
17     cmdliner
18     ppxlib
19   ];
21   meta = with lib; {
22     description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested.";
23     homepage = "https://github.com/aantron/bisect_ppx";
24     license = licenses.mit;
25     maintainers = with maintainers; [ ];
26     mainProgram = "bisect-ppx-report";
27   };