summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mtime
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-09-06 16:01:51 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-09-14 06:54:35 +0000
commit5a5a87cd002ab6875789f48a2ee697bc3b237f95 (patch)
treefeae26bbc9ede8d9d08edcfa64761c2921c6f1f4 /pkgs/development/ocaml-modules/mtime
parent3243c157a37310fe93f77f3d1f0d54158386fd66 (diff)
downloadnixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar.gz
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar.bz2
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar.lz
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar.xz
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.tar.zst
nixpkgs-5a5a87cd002ab6875789f48a2ee697bc3b237f95.zip
ocamlPackages.mtime: disable jsoo support for OCaml < 4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/mtime')
-rw-r--r--pkgs/development/ocaml-modules/mtime/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/mtime/default.nix b/pkgs/development/ocaml-modules/mtime/default.nix
index f4e3586b43c..f86909cc10b 100644
--- a/pkgs/development/ocaml-modules/mtime/default.nix
+++ b/pkgs/development/ocaml-modules/mtime/default.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, js_of_ocaml
-, jsooSupport ? true
+, jsooSupport ? lib.versionAtLeast ocaml.version "4.03"
 }:
 
 with lib;