haskell.packages.ghc983.generic-arbitrary: disable broken test suite

Fails to compile due to a newly exposed type in deepseq 1.5.10:
<https://github.com/typeable/generic-arbitrary/issues/18>.
This commit is contained in:
sternenseemann
2024-10-26 01:32:00 +02:00
parent a62d4fe499
commit a3532c957d
@@ -4,7 +4,7 @@ with haskellLib;
let
inherit (pkgs.stdenv.hostPlatform) isDarwin;
inherit (pkgs) lib;
in
self: super: {
@@ -147,3 +147,8 @@ self: super: {
}) super.reflex;
}
// lib.optionalAttrs (lib.versionAtLeast super.ghc.version "9.8.3") {
# Breakage related to GHC 9.8.3 / deepseq 1.5.1.0
# https://github.com/typeable/generic-arbitrary/issues/18
generic-arbitrary = dontCheck super.generic-arbitrary;
}