From 38e18d0dd13dd69fca34e6758f9b85f2afd157cf Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 17 Jan 2025 13:12:56 +0100 Subject: [PATCH] haskellPackages.socket: allow bytestring == 0.12.* --- 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 e100bbc6e215..a610ea0e2a30 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -910,6 +910,9 @@ self: super: { # https://github.com/input-output-hk/hedgehog-extras/issues/39 hedgehog-extras = doJailbreak super.hedgehog-extras; + # Allow bytestring-0.12.1.0, https://github.com/lpeterse/haskell-socket/issues/71 + socket = doJailbreak super.socket; + # Known issue with nondeterministic test suite failure # https://github.com/nomeata/tasty-expected-failure/issues/21 tasty-expected-failure = dontCheck super.tasty-expected-failure;