ocamlPackages.sqlite3EZ: disable for OCaml ≥ 4.06

This commit is contained in:
Vincent Laporte 2018-08-21 16:02:42 +00:00
parent 84e3cece28
commit 06cd948ba3
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -2,6 +2,10 @@
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "sqlite3EZ is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation {
name = "ocaml-sqlite3EZ-0.1.0";