Commit 5e710aa4 authored by sternenseemann's avatar sternenseemann
Browse files

haskellPackages.xml-picklers: fix edge case in test suite

We've noticed this issue on Hydra already some 10 years ago, but
apparently never applied the patch the upstream developer authored
later (but unfortunately never released).
parent 06deef36
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -762,6 +762,14 @@ with haskellLib;
  HerbiePlugin = dontCheck super.HerbiePlugin;
  wai-cors = dontCheck super.wai-cors;

  # Apply patch fixing an incorrect QuickCheck property which occasionally causes false negatives
  # https://github.com/Philonous/xml-picklers/issues/5
  xml-picklers = appendPatch (pkgs.fetchpatch {
    name = "xml-picklers-fix-prop-xp-attribute.patch";
    url = "https://github.com/Philonous/xml-picklers/commit/887e5416b5e61c589cadf775d82013eb87751ea2.patch";
    sha256 = "sha256-EAyTVkAqCvJ0lRD0+q/htzBJ8iD5qP47j5i2fKhRrlw=";
  }) super.xml-picklers;

  # 2024-05-18: Upstream tests against a different pandoc version
  pandoc-crossref = dontCheck super.pandoc-crossref;