2024-05-24 00:43:14 +00:00
|
|
|
{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }:
|
2018-11-30 11:46:14 +00:00
|
|
|
|
2018-12-01 16:45:37 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "bisect_ppx";
|
2023-07-20 03:55:38 +00:00
|
|
|
version = "2.8.3";
|
2018-11-30 11:46:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aantron";
|
|
|
|
repo = "bisect_ppx";
|
|
|
|
rev = version;
|
2023-07-20 03:55:38 +00:00
|
|
|
hash = "sha256-3qXobZLPivFDtls/3WNqDuAgWgO+tslJV47kjQPoi6o=";
|
2018-11-30 11:46:14 +00:00
|
|
|
};
|
|
|
|
|
2023-04-14 19:55:05 +00:00
|
|
|
minimalOCamlVersion = "4.11";
|
2021-06-05 21:50:45 +00:00
|
|
|
|
2018-11-30 11:46:14 +00:00
|
|
|
buildInputs = [
|
2020-12-31 07:28:42 +00:00
|
|
|
cmdliner
|
2021-06-05 21:50:45 +00:00
|
|
|
ppxlib
|
2018-11-30 11:46:14 +00:00
|
|
|
];
|
|
|
|
|
2024-09-22 08:14:26 +00:00
|
|
|
meta = {
|
2021-06-05 21:50:45 +00:00
|
|
|
description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/aantron/bisect_ppx";
|
2024-09-22 08:14:26 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ momeemt ];
|
2022-05-13 23:48:49 +00:00
|
|
|
mainProgram = "bisect-ppx-report";
|
2018-11-30 11:46:14 +00:00
|
|
|
};
|
|
|
|
}
|