ocamlPackages.dypgen: disable for OCaml ≥ 4.06

This commit is contained in:
Vincent Laporte 2018-08-21 13:43:01 +00:00
parent 354dedfec3
commit 6a9831940d
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -4,6 +4,10 @@ let
pname = "dypgen";
in
if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "${pname} is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "20120619-1";