From 2fbdec4b072f720eb831676c23ea0bd96922e2fe Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 3 Jul 2023 13:57:43 +0200 Subject: [PATCH] haskellPackages.irc-{client,conduit}: lift upper bound on tls and text --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 988db0deac9e..1697df3d45ec 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2364,6 +2364,11 @@ self: super: { vty = self.vty_5_35_1; }); + # Too strict bounds on text and tls + # https://github.com/barrucadu/irc-conduit/issues/54 + irc-conduit = doJailbreak super.irc-conduit; + irc-client = doJailbreak super.irc-client; + # 2022-02-25: Unmaintained and to strict upper bounds paths = doJailbreak super.paths;