depot/third_party/nixpkgs/pkgs/development/ocaml-modules/bisect_ppx/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

28 lines
719 B
Nix

{ lib, fetchFromGitHub, fetchpatch, buildDunePackage, cmdliner, ppxlib }:
buildDunePackage rec {
pname = "bisect_ppx";
version = "2.8.3";
src = fetchFromGitHub {
owner = "aantron";
repo = "bisect_ppx";
rev = version;
hash = "sha256-3qXobZLPivFDtls/3WNqDuAgWgO+tslJV47kjQPoi6o=";
};
minimalOCamlVersion = "4.11";
buildInputs = [
cmdliner
ppxlib
];
meta = with lib; {
description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested.";
homepage = "https://github.com/aantron/bisect_ppx";
license = licenses.mit;
maintainers = with maintainers; [ ];
mainProgram = "bisect-ppx-report";
};
}