Skip to content

Commit

Permalink
Disable GHC 8.6.5 windows cross on nixpkgs 20.09
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed Dec 17, 2020
1 parent 5a70a4e commit 565b31f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
let lib = nixpkgs.lib;
in lib.optionalAttrs (nixpkgsName == "R2009" && (__elem compiler-nix-name ["ghc865" "ghc884"])) {
inherit (lib.systems.examples) ghcjs;
} // lib.optionalAttrs (system == "x86_64-linux" && (nixpkgsName == "R2009" || (!(__elem compiler-nix-name ["ghc8101" "ghc8102" "ghc810220201118"])))) {
} // lib.optionalAttrs (system == "x86_64-linux" && (
(nixpkgsName == "R2009" && __elem compiler-nix-name ["ghc8101" "ghc8102" "ghc810220201118"])
|| (nixpkgsName == "R2003" && __elem compiler-nix-name ["ghc865"]))) {
# Windows cross compilation is currently broken on macOS
inherit (lib.systems.examples) mingwW64;
} // lib.optionalAttrs (system == "x86_64-linux") {
Expand Down

0 comments on commit 565b31f

Please sign in to comment.