1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ocaml ≤ 4.05: mark as broken on Aarch64 (#47010)

This commit is contained in:
Vincent Laporte 2018-09-20 19:18:28 +00:00 committed by xeji
parent b51628ab6b
commit ce03af969e

View file

@ -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";
};
})