ocamlPackages.estring: disable for OCaml ≥ 4.06
This commit is contained in:
parent
5a2ee49f3c
commit
f2ae2c9b8f
@ -1,4 +1,8 @@
|
||||
{ stdenv, buildOcaml, fetchurl }:
|
||||
{ stdenv, buildOcaml, ocaml, fetchurl }:
|
||||
|
||||
if stdenv.lib.versionAtLeast ocaml.version "4.06"
|
||||
then throw "estring is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
buildOcaml rec {
|
||||
name = "estring";
|
||||
|
Loading…
Reference in New Issue
Block a user