haskell.packages.ghc{810,90}.hpack_0_38_1: avoid broken test dep

vcr needs GHC2021 and there is probably no point patching this out. It
is a little annoying since we probably skip the tests of hpack that need
vcr anyways (since they access the network), but we'll live.
This commit is contained in:
sternenseemann
2025-07-26 22:38:19 +02:00
parent 3ddc9cb90a
commit 8076d015a8
2 changed files with 6 additions and 0 deletions

View File

@@ -133,6 +133,9 @@ self: super: {
hlint = self.hlint_3_4_1;
# test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021
hpack_0_38_1 = dontCheck super.hpack_0_38_1;
mime-string = disableOptimization super.mime-string;
# weeder 2.3.* no longer supports GHC 8.10

View File

@@ -117,6 +117,9 @@ self: super: {
"haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version"
(markBroken super.haskell-language-server);
# test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021
hpack_0_38_1 = dontCheck super.hpack_0_38_1;
# Needs to use ghc-lib due to incompatible GHC
ghc-tags = doDistribute self.ghc-tags_1_5;