Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.bisect_ppx: 2.5.0 -> 2.6.1

authored by

superherointj and committed by
Vincent Laporte
39f3777e f2c72bca

+11 -10
+11 -10
pkgs/development/ocaml-modules/bisect_ppx/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, cmdliner, ocaml-migrate-parsetree, ppx_tools_versioned }: 1 + { lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "bisect_ppx"; 5 - version = "2.5.0"; 6 - 7 - useDune2 = true; 5 + version = "2.6.1"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "aantron"; 11 9 repo = "bisect_ppx"; 12 10 rev = version; 13 - sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868"; 11 + sha256 = "sha256-YeLDlH3mUbVEY4OmzlrvSwVUav3uMtSsTFlOsQKnz84="; 14 12 }; 13 + 14 + minimumOCamlVersion = "4.08"; 15 + useDune2 = true; 15 16 16 17 buildInputs = [ 17 18 cmdliner 18 - ocaml-migrate-parsetree 19 - ppx_tools_versioned 19 + ppxlib 20 20 ]; 21 21 22 - meta = { 23 - description = "Code coverage for OCaml"; 24 - license = lib.licenses.mit; 22 + meta = with lib; { 23 + description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested."; 24 + license = licenses.mit; 25 25 homepage = "https://github.com/aantron/bisect_ppx"; 26 + maintainers = with maintainers; [ ]; 26 27 }; 27 28 }