From 7a8de8f5d415098270f07bf397c834fecc6cdffb Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Wed, 9 Mar 2022 15:14:37 +0100 Subject: [PATCH] haskellPackages.patch: Patch to fix build --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8f960cc4a46c..07e9d4978428 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1315,8 +1315,11 @@ self: super: { x509-validation = dontCheck super.x509-validation; tls = dontCheck super.tls; - # Allow building with recent versions of hlint. - patch = doJailbreak super.patch; + # 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; # 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)));