about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-02-22 17:00:05 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2019-02-22 17:04:56 +0000
commit91e194579dc1edd7351d8429899e8c1bf4fe6efa (patch)
treec757630ddc6fcdf69ebb1f76229e72c83d8935dc
parent598554d4768a9ca42143109f80ab53ccc9c0526c (diff)
downloadnixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar.gz
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar.bz2
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar.lz
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar.xz
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.tar.zst
nixlib-91e194579dc1edd7351d8429899e8c1bf4fe6efa.zip
ocamlPackages.bisect_ppx-ocamlbuild: disable for OCaml ≤ 4.01
-rw-r--r--pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix b/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix
index fd3e7d58ae31..38673fb9ddc4 100644
--- a/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix
+++ b/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix
@@ -1,6 +1,7 @@
 { buildDunePackage, bisect_ppx, ocamlbuild }:
 
 buildDunePackage rec {
+  minimumOCamlVersion = "4.02";
   inherit (bisect_ppx) version src meta;
   pname = "bisect_ppx-ocamlbuild";
   propagatedBuildInputs = [ ocamlbuild ];