From f4c4d67e70094e5f107a3458f10679ebe1f11d40 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 22 Apr 2025 02:32:44 +0200 Subject: [PATCH] haskellPackages.profiteur: relax upper bounds on deps --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 7b333c895b18..8b9f587f8c43 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -3113,6 +3113,9 @@ self: super: # Too strict bounds on base <4.19 and tasty <1.5 # https://github.com/maoe/ghc-prof/issues/25 ghc-prof = doJailbreak super.ghc-prof; + # aeson <2.2, bytestring <0.12, text <2.1 + # https://github.com/jaspervdj/profiteur/issues/43 + profiteur = doJailbreak super.profiteur; # 2025-04-19: Tests randomly fail 6 out of 10 times coinor-clp = dontCheck super.coinor-clp;