Skip to content

Commit aee3b8c

Browse files
authored
use latest patch for bisect_ppx (#444109)
2 parents 7703c33 + ce656bf commit aee3b8c

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

pkgs/development/ocaml-modules/bisect_ppx/default.nix

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,20 @@ buildDunePackage rec {
1919
};
2020

2121
# Ensure compatibility with ppxlib 0.36
22-
patches = lib.optional (lib.versionAtLeast ppxlib.version "0.36") (fetchpatch {
23-
url = "https://github.com/aantron/bisect_ppx/commit/f35fdf4bdcb82c308d70f7c9c313a77777f54bdf.patch";
24-
hash = "sha256-hQMDU6zrHDV9JszGAj2p4bd9zlqqjc1TLU+cfMEgz9c=";
25-
});
22+
patches = lib.optionals (lib.versionAtLeast ppxlib.version "0.36") [
23+
(fetchpatch {
24+
url = "https://github.com/aantron/bisect_ppx/commit/f35fdf4bdcb82c308d70f7c9c313a77777f54bdf.patch";
25+
hash = "sha256-hQMDU6zrHDV9JszGAj2p4bd9zlqqjc1TLU+cfMEgz9c=";
26+
})
27+
(fetchpatch {
28+
url = "https://github.com/aantron/bisect_ppx/commit/07bfceec652773de4b140cebc236a15e2429809e.patch";
29+
hash = "sha256-9gDIndPIZMkIkd847qd2QstsZJInBPuWXAUIzZMkHcw=";
30+
})
31+
(fetchpatch {
32+
url = "https://github.com/aantron/bisect_ppx/commit/4f0cb2a2e1b0b786b6b5f1c94985b201aa012f12.patch";
33+
hash = "sha256-20nr7ApKPnnol0VEOirwXdJX+AiFRzBzAq4YzCWn7W0=";
34+
})
35+
];
2636

2737
minimalOCamlVersion = "4.11";
2838

0 commit comments

Comments
 (0)