We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656818e commit c05123aCopy full SHA for c05123a
ci.nix
@@ -53,7 +53,12 @@
53
# aarch64-darwin requires ghc 8.10.7 and does not work on older nixpkgs
54
(v != "aarch64-darwin" || (
55
!__elem compiler-nix-name ["ghc865" "ghc884" "ghc8104" "ghc810420210212" "ghc8105" "ghc8106" "ghc901" "ghc921"]
56
- && !__elem nixpkgsName ["R2105"]))) supportedSystems) (v: v);
+ && !__elem nixpkgsName ["R2105"]))
57
+ &&
58
+ # aarch64-linux requires ghc 8.8.4
59
+ (v != "aarch64-linux" || (
60
+ !__elem compiler-nix-name ["ghc865" "ghc8104" "ghc810420210212" "ghc8105" "ghc8106" "ghc901" "ghc921"]
61
+ ))) supportedSystems) (v: v);
62
crossSystems = nixpkgsName: nixpkgs: compiler-nix-name: system:
63
# We need to use the actual nixpkgs version we're working with here, since the values
64
# of 'lib.systems.examples' are not understood between all versions
0 commit comments