ocamlPackages.ppx_deriving: mark as broken with OCaml ≥ 4.05

This commit is contained in:
Vincent Laporte 2017-08-03 18:39:25 +00:00
parent da378ce8ed
commit 90c9897ff6

View File

@ -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";
};
}