From ab1a3c722494742360de874f87cb3d5ce43de417 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Wed, 16 Mar 2022 01:28:42 +0100 Subject: [PATCH] haskellPackages.reflex: add patch --- 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 729f26ef888f..e06ffc2bc4a6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1614,8 +1614,11 @@ self: super: { # base upper bound is incompatible with ghc 8.10 neuron = doJailbreak super.neuron; - # 2020-04-16: https://github.com/reflex-frp/reflex/issues/449 - reflex = dontCheck (doJailbreak super.reflex); + # 2022-03-16: Pull request for ghc 9 compat: https://github.com/reflex-frp/reflex/pull/467 + reflex = appendPatch (pkgs.fetchpatch { + url = "https://github.com/reflex-frp/reflex/compare/823afd9424234cbe0134051f09a6710e54509cec...469b4ab4a755cad76b8d4d6c9ad482d02686b4ae.patch"; + sha256 = "sha256-EwW7QBXHGlcJkKiLDmsXCZPwQz24+mg2Vuiu0Vb/T6w="; + }) (dontCheck super.reflex); # 2020-11-19: jailbreaking because of pretty-simple bound out of date # https://github.com/kowainik/stan/issues/408