ocamlPackages.bisect_ppx: 2.5.0 -> 2.6.1

master
superherointj 2021-06-05 18:50:45 -03:00 committed by Vincent Laporte
parent f2c72bca63
commit 39f3777e92
1 changed files with 11 additions and 10 deletions

View File

@ -1,27 +1,28 @@
{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ocaml-migrate-parsetree, ppx_tools_versioned }: { lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }:
buildDunePackage rec { buildDunePackage rec {
pname = "bisect_ppx"; pname = "bisect_ppx";
version = "2.5.0"; version = "2.6.1";
useDune2 = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aantron"; owner = "aantron";
repo = "bisect_ppx"; repo = "bisect_ppx";
rev = version; rev = version;
sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868"; sha256 = "sha256-YeLDlH3mUbVEY4OmzlrvSwVUav3uMtSsTFlOsQKnz84=";
}; };
minimumOCamlVersion = "4.08";
useDune2 = true;
buildInputs = [ buildInputs = [
cmdliner cmdliner
ocaml-migrate-parsetree ppxlib
ppx_tools_versioned
]; ];
meta = { meta = with lib; {
description = "Code coverage for OCaml"; description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested.";
license = lib.licenses.mit; license = licenses.mit;
homepage = "https://github.com/aantron/bisect_ppx"; homepage = "https://github.com/aantron/bisect_ppx";
maintainers = with maintainers; [ ];
}; };
} }