From 3533a38478ede359cf230b32f3badfb24eaf1e63 Mon Sep 17 00:00:00 2001 From: Jens Nolte Date: Fri, 1 Oct 2021 13:03:19 +0200 Subject: [PATCH] haskell.packages.ghc921: use random_1_2_1 --- pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index 1e8f3254af75..386238cf39ca 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -97,6 +97,10 @@ self: super: { # The test suite seems pretty broken. base64-bytestring = dontCheck super.base64-bytestring; + # 1.2.1 introduced support for GHC 9.2.1, stackage has 1.2.0 + # The test suite indirectly depends on random, which leads to infinite recursion + random = dontCheck super.random_1_2_1; + # 5 introduced support for GHC 9.0.x, but hasn't landed in stackage yet lens = super.lens_5_0_1;