File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 43
43
# We need to use the actual nixpkgs version we're working with here, since the values
44
44
# of 'lib.systems.examples' are not understood between all versions
45
45
let lib = nixpkgs . lib ;
46
- in lib . optionalAttrs ( nixpkgsName == "R2009 " && ( __elem compiler-nix-name [ "ghc865" "ghc884" ] ) ) {
46
+ in lib . optionalAttrs ( nixpkgsName == "unstable " && ( __elem compiler-nix-name [ "ghc865" "ghc884" ] ) ) {
47
47
inherit ( lib . systems . examples ) ghcjs ;
48
48
} // lib . optionalAttrs ( system == "x86_64-linux" && (
49
49
( nixpkgsName == "R2009" && __elem compiler-nix-name [ "ghc8101" "ghc8102" "ghc8103" "ghc8104" "ghc810220201118" ] )
Original file line number Diff line number Diff line change 1
1
# 'supportedSystems' restricts the set of systems that we will evaluate for. Useful when you're evaluating
2
2
# on a machine with e.g. no way to build the Darwin IFDs you need!
3
3
{ supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
4
- , ifdLevel ? 3
4
+ , ifdLevel ? 2
5
5
, checkMaterialization ? false } :
6
6
7
7
let
You can’t perform that action at this time.
0 commit comments