ocamlPackages.cil: disable for OCaml ≥ 4.06
This commit is contained in:
parent
e79e66cad1
commit
8a62ad06c2
1 changed files with 5 additions and 0 deletions
|
@ -1,4 +1,9 @@
|
|||
{ stdenv, fetchurl, perl, ocaml, findlib, ocamlbuild }:
|
||||
|
||||
if stdenv.lib.versionAtLeast ocaml.version "4.06"
|
||||
then throw "cil is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-cil-1.7.3";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue