summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-12 00:43:21 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-12 00:50:36 +0200
commitc0d39d26a511ddeb794319d7cfa758c3d96f570f (patch)
tree85deb5ee52c5a224ef8e325ca915316c357cbfba /pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
parent71ffc07f4e3f56301e6b7737667d4a9cc3202a4a (diff)
downloadnixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar.gz
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar.bz2
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar.lz
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar.xz
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.tar.zst
nixpkgs-c0d39d26a511ddeb794319d7cfa758c3d96f570f.zip
haskell.packages.ghc901.retry: dont build test suite
Test suite doesn't build with GHC 9.0.1 and since upstream is
currently not invested in fixing it, we (temporarily) disable it.

Upside: we can build hoogle again.

https://github.com/Soostone/retry/issues/71
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
index 5dea75bb218..640cdec1cea 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
@@ -111,4 +111,8 @@ self: super: {
   # https://github.com/snoyberg/mono-traversable/issues/192
   mono-traversable = dontCheck super.mono-traversable;
 
+  # Disable tests pending resolution of
+  # https://github.com/Soostone/retry/issues/71
+  retry = dontCheck super.retry;
+
 }