haskellPackages.reflex-dom-core: add patches

This commit is contained in:
Malte Brandy 2022-03-16 01:32:13 +01:00
parent ab1a3c7224
commit 4585f07fce

View file

@ -1347,7 +1347,16 @@ self: super: {
}) super.jsaddle-dom;
# Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
reflex-dom-core = doDistribute (unmarkBroken (dontCheck (doJailbreak super.reflex-dom-core)));
# 2022-03-16: Pullrequest for ghc 9 compat https://github.com/reflex-frp/reflex-dom/pull/433
reflex-dom-core = doDistribute (unmarkBroken (dontCheck
(appendPatch
(pkgs.fetchpatch {
url = "https://github.com/reflex-frp/reflex-dom/compare/a0459deafd296656b3e99db01ea7f65b89b0948c...56fa8a484ccfc7d3365d07fea3caa430155dbcac.patch";
sha256 = "sha256-azMF3uX7S1rKKRAVjY+xP2XbQKHvEY/9nU7cH81KKPA=";
stripLen = 2;
extraPrefix = "";
})
super.reflex-dom-core)));
# Tests disabled because they assume to run in the whole jsaddle repo and not the hackage tarbal of jsaddle-warp.
jsaddle-warp = dontCheck super.jsaddle-warp;