about summary refs log tree commit diff
path: root/pkgs/development/compilers/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2018-09-20 19:18:28 +0000
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-20 21:18:28 +0200
commitce03af969e584a199d7305c737ea1f6df5bf9d67 (patch)
tree12ae605dbb987b54546e9bc4d0b0b3c8b6382d35 /pkgs/development/compilers/ocaml
parentb51628ab6b0559eaa5a7232ef15e7cd56b2698fd (diff)
downloadnixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar.gz
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar.bz2
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar.lz
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar.xz
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.tar.zst
nixlib-ce03af969e584a199d7305c737ea1f6df5bf9d67.zip
ocaml ≤ 4.05: mark as broken on Aarch64 (#47010)
Diffstat (limited to 'pkgs/development/compilers/ocaml')
-rw-r--r--pkgs/development/compilers/ocaml/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ocaml/generic.nix b/pkgs/development/compilers/ocaml/generic.nix
index d2295d2d79b0..1ed6d2c6db22 100644
--- a/pkgs/development/compilers/ocaml/generic.nix
+++ b/pkgs/development/compilers/ocaml/generic.nix
@@ -90,7 +90,7 @@ stdenv.mkDerivation (args // rec {
       '';
 
     platforms = with platforms; linux ++ darwin;
-    broken = stdenv.isAarch64 && !stdenv.lib.versionAtLeast major_version "4.06";
+    broken = stdenv.isAarch64 && !stdenv.lib.versionAtLeast version "4.06";
   };
 
 })