mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
release-haskell.nix: test working packages with ghc921 as well
This will produce some binary cache and CI for GHC 9.2.1. Specifically we will notice when we can drop the head.hackage packages again.
This commit is contained in:
parent
76d93938da
commit
6101c27a43
|
@ -304,17 +304,18 @@ let
|
|||
# and to confirm that critical packages for the
|
||||
# package sets (like Cabal, jailbreak-cabal) are
|
||||
# working as expected.
|
||||
cabal-install = released;
|
||||
cabal-install = released ++ [ compilerNames.ghc921 ];
|
||||
Cabal_3_6_2_0 = released ++ [ compilerNames.ghc921 ];
|
||||
cabal2nix-unstable = released;
|
||||
funcmp = released;
|
||||
cabal2nix = released ++ [ compilerNames.ghc921 ];
|
||||
cabal2nix-unstable = released ++ [ compilerNames.ghc921 ];
|
||||
funcmp = released ++ [ compilerNames.ghc921 ];
|
||||
haskell-language-server = released;
|
||||
hoogle = released;
|
||||
hsdns = released;
|
||||
jailbreak-cabal = released;
|
||||
language-nix = released;
|
||||
nix-paths = released;
|
||||
titlecase = released;
|
||||
hsdns = released ++ [ compilerNames.ghc921 ];
|
||||
jailbreak-cabal = released ++ [ compilerNames.ghc921 ];
|
||||
language-nix = released ++ [ compilerNames.ghc921 ];
|
||||
nix-paths = released ++ [ compilerNames.ghc921 ];
|
||||
titlecase = released ++ [ compilerNames.ghc921 ];
|
||||
ghc-api-compat = released;
|
||||
})
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue