summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
diff options
context:
space:
mode:
authorJens Nolte <git@queezle.net>2021-10-01 13:03:19 +0200
committersterni <sternenseemann@systemli.org>2021-10-01 15:31:27 +0200
commit3533a38478ede359cf230b32f3badfb24eaf1e63 (patch)
treea79b1bd359b3105351df97f835d161391c241008 /pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
parent35813c6f04d74f6ad3f3cbe64976aa549ab17478 (diff)
downloadnixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar.gz
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar.bz2
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar.lz
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar.xz
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.tar.zst
nixpkgs-3533a38478ede359cf230b32f3badfb24eaf1e63.zip
haskell.packages.ghc921: use random_1_2_1
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix4
1 files changed, 4 insertions, 0 deletions
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 1e8f3254af7..386238cf39c 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;