From 2a69939374e1da9b447ee254a007837e22e05a7c Mon Sep 17 00:00:00 2001 From: maralorn Date: Sat, 20 Sep 2025 21:09:26 +0200 Subject: [PATCH] haskellPackages.matrix-client: Jailbreak to fix build --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index db191b9973a8..f908013800ca 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -357,6 +357,10 @@ with haskellLib; # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149 orbits = dontCheck super.orbits; + # 2025-09-20: Restrictive upper bound on hashable. + # https://github.com/softwarefactory-project/matrix-client-haskell/issues/46 + matrix-client = doJailbreak super.matrix-client; + # 2025-02-10: Too strict bounds on tasty-quickcheck < 0.11 tasty-discover = doJailbreak super.tasty-discover;