Unverified Commit aee3b8cb authored by Vincent Laporte's avatar Vincent Laporte Committed by GitHub
Browse files

use latest patch for bisect_ppx (#444109)

parents 7703c33c ce656bff
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
@@ -19,10 +19,20 @@ buildDunePackage rec {
  };

  # Ensure compatibility with ppxlib 0.36
  patches = lib.optional (lib.versionAtLeast ppxlib.version "0.36") (fetchpatch {
  patches = lib.optionals (lib.versionAtLeast ppxlib.version "0.36") [
    (fetchpatch {
      url = "https://github.com/aantron/bisect_ppx/commit/f35fdf4bdcb82c308d70f7c9c313a77777f54bdf.patch";
      hash = "sha256-hQMDU6zrHDV9JszGAj2p4bd9zlqqjc1TLU+cfMEgz9c=";
  });
    })
    (fetchpatch {
      url = "https://github.com/aantron/bisect_ppx/commit/07bfceec652773de4b140cebc236a15e2429809e.patch";
      hash = "sha256-9gDIndPIZMkIkd847qd2QstsZJInBPuWXAUIzZMkHcw=";
    })
    (fetchpatch {
      url = "https://github.com/aantron/bisect_ppx/commit/4f0cb2a2e1b0b786b6b5f1c94985b201aa012f12.patch";
      hash = "sha256-20nr7ApKPnnol0VEOirwXdJX+AiFRzBzAq4YzCWn7W0=";
    })
  ];

  minimalOCamlVersion = "4.11";