about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-05-14 08:29:04 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-05-20 08:20:27 +0200
commit0900872b02ca8e250a16642d445026a846de9f6a (patch)
tree1211968fa8ccc13c96c2cda2fccef77bec851bc8 /pkgs/development/ocaml-modules
parentec3b49c7424994faaf8d9caae5f0dfda48eab629 (diff)
downloadnixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar.gz
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar.bz2
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar.lz
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar.xz
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.tar.zst
nixlib-0900872b02ca8e250a16642d445026a846de9f6a.zip
ocamlPackages.batteries: fix for OCaml 4.10
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/batteries/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix
index 2ed697d42df4..3032df7b8fd5 100644
--- a/pkgs/development/ocaml-modules/batteries/default.nix
+++ b/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
 
@@ -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 ];