nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 28 lines 688 B view raw
1{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ppxlib }: 2 3buildDunePackage rec { 4 pname = "bisect_ppx"; 5 version = "2.8.3"; 6 7 src = fetchFromGitHub { 8 owner = "aantron"; 9 repo = "bisect_ppx"; 10 rev = version; 11 hash = "sha256-3qXobZLPivFDtls/3WNqDuAgWgO+tslJV47kjQPoi6o="; 12 }; 13 14 minimalOCamlVersion = "4.11"; 15 16 buildInputs = [ 17 cmdliner 18 ppxlib 19 ]; 20 21 meta = with lib; { 22 description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested"; 23 homepage = "https://github.com/aantron/bisect_ppx"; 24 license = licenses.mit; 25 maintainers = [ ]; 26 mainProgram = "bisect-ppx-report"; 27 }; 28}