Merge pull request #226193 from vbgl/ocaml-bisect_ppx-2.8.2

ocamlPackages.bisect_ppx: 2.8.1 → 2.8.2

authored by

Ulrik Strid and committed by
GitHub
bb7aafa6 488cc85d

+6 -10
+6 -10
pkgs/development/ocaml-modules/bisect_ppx/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "bisect_ppx"; 5 - version = "2.8.1"; 5 + version = "2.8.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aantron"; 9 9 repo = "bisect_ppx"; 10 10 rev = version; 11 - sha256 = "sha256-pOeeSxzUF1jXQjA71atSZALdgQ2NB9qpKo5iaDnPwhQ="; 11 + hash = "sha256-Uc5ZYL6tORcCCvCe9UmOnBF68FqWpQ4bc48fTQwnfis="; 12 12 }; 13 13 14 - patches = lib.optionals (lib.versionAtLeast ppxlib.version "0.26.0") [ 15 - # Ppxlib >= 0.26.0 compatibility 14 + patches = [ 15 + # Ppxlib >= 0.28.0 compatibility 16 16 # remove when a new version is released 17 17 (fetchpatch { 18 - name = "${pname}-${version}-ppxlib-0.26-compatibility.patch"; 19 - url = "https://patch-diff.githubusercontent.com/raw/aantron/bisect_ppx/pull/400.patch"; 20 - sha256 = "sha256-WAn6+d6pMUr79LVugOENuh9s0gbVEcTg0rxXMz1P3ak="; 21 - }) 22 - (fetchpatch { 23 18 name = "${pname}-${version}-ppxlib-0.28-compatibility.patch"; 24 19 url = "https://github.com/anmonteiro/bisect_ppx/commit/cc442a08e3a2e0e18deb48f3a696076ac0986728.patch"; 25 20 sha256 = "sha256-pPHhmtd81eWhQd4X0gfZNPYT75+EkurwivP7acfJbNc="; 26 21 }) 27 22 ]; 28 23 29 - minimalOCamlVersion = "4.08"; 24 + minimalOCamlVersion = "4.11"; 25 + duneVersion = "3"; 30 26 31 27 buildInputs = [ 32 28 cmdliner