haskellPackages.patch: Add patch for ghc 9.0 compat

main
Malte Brandy 2 years ago
parent 8f980b4383
commit c8a4385f72
  1. 17
      pkgs/development/haskell-modules/configuration-common.nix

@ -1326,11 +1326,18 @@ self: super: {
x509-validation = dontCheck super.x509-validation;
tls = dontCheck super.tls;
# 2022-02-27: https://github.com/reflex-frp/patch/pull/40 for bump bounds
patch = appendPatch (pkgs.fetchpatch {
url = "https://github.com/reflex-frp/patch/commit/6affb9a665361377346fac8c579fdf41c9ece844.patch";
sha256 = "sha256-m+Z9HpkOcgGel+PgcftPmtsXcS/7Egi2Ka0KQJljr4Q=";
}) super.patch;
patch = appendPatches [
# 2022-02-27: https://github.com/reflex-frp/patch/pull/40 for bump bounds
(pkgs.fetchpatch {
url = "https://github.com/reflex-frp/patch/commit/15ea4956e04264b9be2fe4644119a709b196708f.patch";
sha256 = "sha256-la97DCjeVu82AaQv2my+UhmB/jBmMyxxpRAwhEB1RGc=";
})
# 2022-03-13: https://github.com/reflex-frp/patch/pull/41 for ghc 9.0 compat
(pkgs.fetchpatch {
url = "https://github.com/reflex-frp/patch/commit/fee3addcfc982c7b70489a8a64f208ab2360bdb7.patch";
sha256 = "sha256-/CTiHSs+Z4dyL5EJx949XD0zzSAy5s4hzchmNkb0YOk=";
})
] super.patch;
# 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)));

Loading…
Cancel
Save