about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-02-22 17:00:57 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2019-02-22 17:04:57 +0000
commit74d519b234bd851bd785e093160a837cafafe9f1 (patch)
tree33d097235dddc33cefd9d7a4d4f45f57c7e754f2 /pkgs/development
parent9a666f92a24bc1dd35b9f785c8a3a40907ad451b (diff)
downloadnixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar.gz
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar.bz2
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar.lz
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar.xz
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.tar.zst
nixlib-74d519b234bd851bd785e093160a837cafafe9f1.zip
ocamlPackages.utop: disable for OCaml ≤ 4.02
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/ocaml/utop/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index be6bb73aab81..d9e563952ea7 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -2,7 +2,7 @@
 , lambdaTerm, cppo, makeWrapper
 }:
 
-if !stdenv.lib.versionAtLeast ocaml.version "4.02"
+if !stdenv.lib.versionAtLeast ocaml.version "4.03"
 then throw "utop is not available for OCaml ${ocaml.version}"
 else