From d57e1530999db9e59aaa42c8d73e45a22bc1cd71 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Tue, 22 Nov 2022 14:00:54 +0900 Subject: [PATCH] haskell.packages.ghc94.tasty-hedgehog: override version 1.3.1.0 with 1.4.0.0 --- pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix index b80ec72ebad1..1ecdf8eb8221 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix @@ -127,9 +127,9 @@ in { # We need >= 1.1.2 for ghc-9.4 support, but we don't have 1.1.x in # hackage-packages.nix hedgehog = doDistribute (dontHaddock super.hedgehog_1_2); - # does not work with hedgehog 1.2 yet: + # tasty-hedgehog > 1.3 necessary to work with hedgehog 1.2: # https://github.com/qfpl/tasty-hedgehog/pull/63 - tasty-hedgehog = markBroken super.tasty-hedgehog; + tasty-hedgehog = self.tasty-hedgehog_1_4_0_0; # due to tasty-hedgehog retry = checkAgainAfter super.tasty-hedgehog "1.3.0.0" "tasty-hedgehog broken" (dontCheck super.retry);