mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ocaml: default to 4.06 on aarch64 (since 4.05 is broken there)
This commit is contained in:
parent
e4997af72b
commit
a600e0c8a5
@ -1043,5 +1043,10 @@ in rec
|
||||
|
||||
ocamlPackages_latest = ocamlPackages_4_06;
|
||||
|
||||
ocamlPackages = ocamlPackages_4_05;
|
||||
ocamlPackages =
|
||||
# OCaml 4.05 is broken on aarch64
|
||||
if system == "aarch64-linux" then
|
||||
ocamlPackages_4_06
|
||||
else
|
||||
ocamlPackages_4_05;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user