We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0105e commit 272b8f9Copy full SHA for 272b8f9
pkgs/development/haskell-modules/configuration-common.nix
@@ -703,6 +703,14 @@ self: super:
703
# https://github.com/alphaHeavy/lzma-conduit/issues/23
704
lzma-conduit = doJailbreak super.lzma-conduit;
705
706
+ # doctest suite needs adjustment with GHC 9.12
707
+ xml-conduit = appendPatch (pkgs.fetchpatch {
708
+ name = "xml-conduit-ghc-9.12.patch";
709
+ url = "https://github.com/snoyberg/xml/commit/73ce67029c61decaa6525536377a15581325fd9e.patch";
710
+ sha256 = "1gvdhwz7f6rw28xqm82h1kx2kwbdvigipfcb0y66520lvd544sm6";
711
+ stripLen = 1;
712
+ }) super.xml-conduit;
713
+
714
# 2020-06-05: HACK: does not pass own build suite - `dontCheck`
715
# 2024-01-15: too strict bound on free < 5.2
716
hnix = doJailbreak (
0 commit comments