mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
ocamlPackages.cil: disable for OCaml ≥ 4.06
This commit is contained in:
parent
e79e66cad1
commit
8a62ad06c2
@ -1,4 +1,9 @@
|
|||||||
{ stdenv, fetchurl, perl, ocaml, findlib, ocamlbuild }:
|
{ 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 {
|
stdenv.mkDerivation {
|
||||||
name = "ocaml-cil-1.7.3";
|
name = "ocaml-cil-1.7.3";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
Loading…
Reference in New Issue
Block a user