Skip to content

Commit

Permalink
ocamlPackages.batteries: fix for OCaml 4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed May 20, 2020
1 parent ec3b49c commit 0900872
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/ocaml-modules/batteries/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, qtest, num }:
{ stdenv, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, qtest, num }:

let version = "3.0.0"; in

Expand All @@ -10,6 +10,12 @@ stdenv.mkDerivation {
sha256 = "0d833amm4p0pczgl7wriv99f3r5r6345p5gi9d97sm0hqx27vzwi";
};

# Fixes tests with OCaml 4.10
patches = [(fetchpatch {
url = "https://github.com/ocaml-batteries-team/batteries-included/commit/6d8d67f9fb48181be3d527b32df15899b00cd5dd.patch";
sha256 = "0msk8c5bjm6gm011i75b1rza332i1r4adj58qzli6gyjlvfj1hx4";
})];

buildInputs = [ ocaml findlib ocamlbuild qtest ];
propagatedBuildInputs = [ num ];

Expand Down

0 comments on commit 0900872

Please sign in to comment.