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 @@ -180,10 +180,14 @@ let
180180 "owl"
181181 "owl-base"
182182 ] ;
183+
184+ aarch64LinuxIgnores = [
185+ "elina"
186+ ] ;
183187in
184188
185189rec {
186- inherit ocaml5Ignores darwinIgnores ;
190+ inherit ocaml5Ignores darwinIgnores aarch64LinuxIgnores ;
187191 ocamlCandidates =
188192 { pkgs
189193 , 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