Build all ghcs on hydra

This commit is contained in:
Shea Levy 2014-03-26 22:46:05 -04:00
parent fd827e6437
commit e16595f149

View file

@ -2724,7 +2724,13 @@ let
# NOTE (recurseIntoAttrs): After discussion, we originally decided to
# enable it for all GHC versions. However, this is getting too much,
# 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.
haskellPackages = haskellPackages_ghc763;