summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bisect_ppx/default.nix
blob: 9999cd06fcae0d7b414f950b4dd217ae9065ad37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, buildDunePackage, ocaml-migrate-parsetree, ppx_tools_versioned }:

buildDunePackage rec {
  pname = "bisect_ppx";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "aantron";
    repo = "bisect_ppx";
    rev = version;
    sha256 = "1plhm4pvrhpapz5zaks194ji1fgzmp13y942g10pbn9m7kgkqg4h";
  };

  buildInputs = [
    ocaml-migrate-parsetree
    ppx_tools_versioned
  ];

  meta = {
    description = "Code coverage for OCaml";
    license = stdenv.lib.licenses.mpl20;
    homepage = https://github.com/aantron/bisect_ppx;
  };
}