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 {
pname = "bisect_ppx";
version = "2.5.0";
useDune2 = true;
version = "2.6.1";
src = fetchFromGitHub {
owner = "aantron";
repo = "bisect_ppx";
rev = version;
sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868";
sha256 = "sha256-YeLDlH3mUbVEY4OmzlrvSwVUav3uMtSsTFlOsQKnz84=";
};
minimumOCamlVersion = "4.08";
useDune2 = true;
buildInputs = [
cmdliner
ocaml-migrate-parsetree
ppx_tools_versioned
ppxlib
];
meta = {
description = "Code coverage for OCaml";
license = lib.licenses.mit;
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.";
license = licenses.mit;
homepage = "https://github.com/aantron/bisect_ppx";
maintainers = with maintainers; [ ];
};
}