lol

ocamlPackages.mlgmp: disable for OCaml ≥ 4.03

+3
+3
pkgs/development/ocaml-modules/mlgmp/default.nix
··· 1 1 {stdenv, fetchurl, ocaml, findlib, gmp, mpfr, ncurses }: 2 2 3 + if stdenv.lib.versionAtLeast ocaml.version "4.03" 4 + then throw "mlgmp is not available for OCaml ${ocaml.version}" else 5 + 3 6 let 4 7 pname = "mlgmp"; 5 8 in