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 }: 2 3 buildDunePackage rec { 4 pname = "bisect_ppx"; 5 - version = "2.5.0"; 6 - 7 - useDune2 = true; 8 9 src = fetchFromGitHub { 10 owner = "aantron"; 11 repo = "bisect_ppx"; 12 rev = version; 13 - sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868"; 14 }; 15 16 buildInputs = [ 17 cmdliner 18 - ocaml-migrate-parsetree 19 - ppx_tools_versioned 20 ]; 21 22 - meta = { 23 - description = "Code coverage for OCaml"; 24 - license = lib.licenses.mit; 25 homepage = "https://github.com/aantron/bisect_ppx"; 26 }; 27 }
··· 1 + { lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }: 2 3 buildDunePackage rec { 4 pname = "bisect_ppx"; 5 + version = "2.6.1"; 6 7 src = fetchFromGitHub { 8 owner = "aantron"; 9 repo = "bisect_ppx"; 10 rev = version; 11 + sha256 = "sha256-YeLDlH3mUbVEY4OmzlrvSwVUav3uMtSsTFlOsQKnz84="; 12 }; 13 + 14 + minimumOCamlVersion = "4.08"; 15 + useDune2 = true; 16 17 buildInputs = [ 18 cmdliner 19 + ppxlib 20 ]; 21 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 homepage = "https://github.com/aantron/bisect_ppx"; 26 + maintainers = with maintainers; [ ]; 27 }; 28 }