depot/pkgs/development/ocaml-modules/bisect_ppx/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
712 B
Nix

{ lib, fetchFromGitHub, 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 = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ momeemt ];
mainProgram = "bisect-ppx-report";
};
}