ocamlPackages.bisect_ppx: 1.4.0 → 2.5.0

This commit is contained in:
Vincent Laporte 2020-12-31 08:28:42 +01:00 committed by Vincent Laporte
parent bd31e66778
commit ccc474d77b
1 changed files with 7 additions and 4 deletions

View File

@ -1,24 +1,27 @@
{ stdenv, fetchFromGitHub, buildDunePackage, ocaml-migrate-parsetree, ppx_tools_versioned }: { lib, fetchFromGitHub, buildDunePackage, cmdliner, ocaml-migrate-parsetree, ppx_tools_versioned }:
buildDunePackage rec { buildDunePackage rec {
pname = "bisect_ppx"; pname = "bisect_ppx";
version = "1.4.0"; version = "2.5.0";
useDune2 = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aantron"; owner = "aantron";
repo = "bisect_ppx"; repo = "bisect_ppx";
rev = version; rev = version;
sha256 = "1plhm4pvrhpapz5zaks194ji1fgzmp13y942g10pbn9m7kgkqg4h"; sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868";
}; };
buildInputs = [ buildInputs = [
cmdliner
ocaml-migrate-parsetree ocaml-migrate-parsetree
ppx_tools_versioned ppx_tools_versioned
]; ];
meta = { meta = {
description = "Code coverage for OCaml"; description = "Code coverage for OCaml";
license = stdenv.lib.licenses.mpl20; license = lib.licenses.mit;
homepage = "https://github.com/aantron/bisect_ppx"; homepage = "https://github.com/aantron/bisect_ppx";
}; };
} }