lol

ocamlPackages.frontc: disable for OCaml ≥ 4.06

+5 -1
+5 -1
pkgs/development/ocaml-modules/frontc/default.nix
··· 1 - {lib, buildOcaml, fetchurl}: 1 + { lib, buildOcaml, fetchurl, ocaml }: 2 + 3 + if lib.versionAtLeast ocaml.version "4.06" 4 + then throw "FrontC is not available for OCaml ${ocaml.version}" 5 + else 2 6 3 7 buildOcaml rec { 4 8 name = "FrontC";