Skip to content

Commit

Permalink
haskell.packages.ghc983.generic-arbitrary: disable broken test suite
Browse files Browse the repository at this point in the history
Fails to compile due to a newly exposed type in deepseq 1.5.10:
<typeable/generic-arbitrary#18>.
  • Loading branch information
sternenseemann committed Oct 25, 2024
1 parent a62d4fe commit a3532c9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ with haskellLib;

let
inherit (pkgs.stdenv.hostPlatform) isDarwin;

inherit (pkgs) lib;
in

self: super: {
Expand Down Expand Up @@ -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;
}

0 comments on commit a3532c9

Please sign in to comment.