Skip to content

Commit 456089b

Browse files
committedJun 26, 2017
ocamlPackages.mlgmp: disable for OCaml ≥ 4.03
1 parent ac83ef3 commit 456089b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎pkgs/development/ocaml-modules/mlgmp/default.nix

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{stdenv, fetchurl, ocaml, findlib, gmp, mpfr, ncurses }:
22

3+
if stdenv.lib.versionAtLeast ocaml.version "4.03"
4+
then throw "mlgmp is not available for OCaml ${ocaml.version}" else
5+
36
let
47
pname = "mlgmp";
58
in

0 commit comments

Comments
 (0)
Please sign in to comment.