summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-08-03 18:39:25 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-08-04 05:36:58 +0000
commit90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28 (patch)
tree4cd75864f25ebd62b475e1bf7b0aede7f2092dd7 /pkgs/development
parentda378ce8edd13bb346852caaa079a2b6f2017018 (diff)
downloadnixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar.gz
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar.bz2
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar.lz
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar.xz
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.tar.zst
nixlib-90c9897ff6130e55d5a0a6eaf7f9d1cc74208c28.zip
ocamlPackages.ppx_deriving: mark as broken with OCaml ≥ 4.05
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/ppx_deriving/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/ppx_deriving/default.nix b/pkgs/development/ocaml-modules/ppx_deriving/default.nix
index a1255b2dbc17..57a423a80373 100644
--- a/pkgs/development/ocaml-modules/ppx_deriving/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_deriving/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildOcaml, fetchzip
+{ stdenv, buildOcaml, ocaml, fetchzip
 , cppo, ppx_tools, result, ounit
 }:
 
@@ -25,5 +25,6 @@ buildOcaml rec {
     description = "deriving is a library simplifying type-driven code generation on OCaml >=4.02.";
     maintainers = [ maintainers.maurer ];
     license = licenses.mit;
+    broken = versionAtLeast ocaml.version "4.05";
   };
 }