Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,14 @@ self: super:
# https://github.com/alphaHeavy/lzma-conduit/issues/23
lzma-conduit = doJailbreak super.lzma-conduit;

# doctest suite needs adjustment with GHC 9.12
xml-conduit = appendPatch (pkgs.fetchpatch {
name = "xml-conduit-ghc-9.12.patch";
url = "https://github.com/snoyberg/xml/commit/73ce67029c61decaa6525536377a15581325fd9e.patch";
sha256 = "1gvdhwz7f6rw28xqm82h1kx2kwbdvigipfcb0y66520lvd544sm6";
stripLen = 1;
}) super.xml-conduit;

# 2020-06-05: HACK: does not pass own build suite - `dontCheck`
# 2024-01-15: too strict bound on free < 5.2
hnix = doJailbreak (
Expand Down
2 changes: 2 additions & 0 deletions pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ with haskellLib;

lucid = doJailbreak super.lucid; # base <4.21
extensions_0_1_0_3 = doJailbreak super.extensions_0_1_0_3; # hedgehog >=1.0 && <1.5, hspec-hedgehog >=0.0.1 && <0.2
# https://github.com/haskell-party/feed/issues/73
feed = doJailbreak super.feed; # base, time
hie-compat = doJailbreak super.hie-compat; # base <4.21
hiedb = doJailbreak super.hiedb; # base >=4.12 && <4.21, ghc >=8.6 && <9.11
ed25519 = doJailbreak super.ed25519; # https://github.com/thoughtpolice/hs-ed25519/issues/39
Expand Down