File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,14 @@ let
205205 "owl"
206206 "owl-base"
207207 ] ;
208+
209+ aarch64LinuxIgnores = [
210+ "elina"
211+ ] ;
208212in
209213
210214rec {
211- inherit ocaml5Ignores darwinIgnores ;
215+ inherit ocaml5Ignores darwinIgnores aarch64LinuxIgnores ;
212216 ocamlCandidates =
213217 { pkgs
214218 , ocamlVersion
Original file line number Diff line number Diff line change 33 inherit ( pkgs ) lib stdenv ;
44 filter = pkgs . callPackage ./filter.nix { } ;
55 isDarwin = system == "aarch64-darwin" || system == "x86_64-darwin" ;
6- extraIgnores = if isDarwin then filter . darwinIgnores else [ ] ;
6+ extraIgnores =
7+ if isDarwin
8+ then filter . darwinIgnores
9+ else if system == "aarch64-linux" then filter . aarch64LinuxIgnores
10+ else [ ] ;
711in
812
913with filter ;
1014{
1115 build_4_14 = ocamlCandidates {
1216 inherit pkgs ;
1317 ocamlVersion = "4_14" ;
18+ extraIgnores = extraIgnores ;
1419 } ;
1520 build_5_1 = ocamlCandidates {
1621 inherit pkgs ;
You can’t perform that action at this time.
0 commit comments