haskell.packages.ghc9121: don't test pkgs that don't support 9.12

hlint, ghc-tags and weeder are very much tied to the GHC version or an
appropriate version of ghc-lib and friends, but don't have a release
that supports it yet:

https://github.com/ndmitchell/hlint/issues/1628
https://github.com/ndmitchell/hlint/issues/1613
This commit is contained in:
sternenseemann
2024-12-30 15:11:45 +01:00
parent feaddcabd1
commit 3c6c989874
+3
View File
@@ -576,6 +576,7 @@ let
hlint = lib.subtractLists [
compilerNames.ghc902
compilerNames.ghc9101
compilerNames.ghc9121
] released;
hpack = released;
hsdns = released;
@@ -600,11 +601,13 @@ let
compilerNames.ghc928
];
ghc-tags = lib.subtractLists [
compilerNames.ghc9121
] released;
hashable = released;
primitive = released;
weeder = lib.subtractLists [
compilerNames.ghc9101
compilerNames.ghc9121
] released;
})
{