Build all ghcs on hydra
This commit is contained in:
parent
fd827e6437
commit
e16595f149
@ -2724,7 +2724,13 @@ let
|
|||||||
# NOTE (recurseIntoAttrs): After discussion, we originally decided to
|
# NOTE (recurseIntoAttrs): After discussion, we originally decided to
|
||||||
# enable it for all GHC versions. However, this is getting too much,
|
# enable it for all GHC versions. However, this is getting too much,
|
||||||
# particularly in connection with Hydra builds for all these packages.
|
# particularly in connection with Hydra builds for all these packages.
|
||||||
# So we enable it for selected versions only.
|
# So we enable it for selected versions only. We build all ghcs, though
|
||||||
|
|
||||||
|
ghc = recurseIntoAttrs (lib.mapAttrs' (name: value:
|
||||||
|
lib.nameValuePair (builtins.substring (builtins.stringLength "packages_") (builtins.stringLength name) name) value.ghc
|
||||||
|
) (lib.filterAttrs (name: value:
|
||||||
|
builtins.substring 0 (builtins.stringLength "packages_") name == "packages_"
|
||||||
|
) haskell));
|
||||||
|
|
||||||
# Current default version: 7.6.3.
|
# Current default version: 7.6.3.
|
||||||
haskellPackages = haskellPackages_ghc763;
|
haskellPackages = haskellPackages_ghc763;
|
||||||
|
Loading…
Reference in New Issue
Block a user