From 345c32b3c32a210fbbc37f6cefbcc8255eb7df41 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Sun, 19 Jun 2022 21:41:21 +0200 Subject: [PATCH] haskellPackages.reflex: remove outdated patch --- .../haskell-modules/configuration-common.nix | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8473fc3e693a..c162e3feec35 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1613,20 +1613,8 @@ self: super: { reflex-dom-pandoc = super.reflex-dom-pandoc.override { clay = dontCheck self.clay_0_13_3; }; - # 2022-03-16: Pull request for ghc 9 compat: https://github.com/reflex-frp/reflex/pull/467 - reflex = overrideCabal (drv: { - patches = drv.patches or [] ++ [ - (fetchpatch { - url = "https://github.com/reflex-frp/reflex/compare/469b4ab4a755cad76b8d4d6c9ad482d02686b4ae.patch"; - sha256 = "04sxzxpx7xhr6p4n76rg1ci8zjfzs19lr21ziwsfig8zmdg22i7q"; - }) - ]; - doCheck = false; - # hackage revision seems to have DOS newlines - prePatch = drv.prePatch or "" + '' - ${pkgs.buildPackages.dos2unix}/bin/dos2unix reflex.cabal - ''; - }) super.reflex; + # 2022-06-19: Disable checks because of https://github.com/reflex-frp/reflex/issues/475 + reflex = dontCheck super.reflex; # 2020-11-19: jailbreaking because of pretty-simple bound out of date # https://github.com/kowainik/stan/issues/408