From 2c8bbc8c3ad9f94260cedb08e8ce5302c348fdc8 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 11 Feb 2025 22:31:57 +0100 Subject: [PATCH] haskellPackages.pipes-http: allow bytestring >= 0.12 --- 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 ebad23080302..798f6fcec8cc 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -857,6 +857,10 @@ self: super: { # "base" dependency. haddock-cheatsheet = doJailbreak super.haddock-cheatsheet; + # Too strict bounds on bytestring < 0.12 + # https://github.com/Gabriella439/Haskell-Pipes-HTTP-Library/issues/18 + pipes-http = doJailbreak super.pipes-http; + # no haddock since this is an umbrella package. cloud-haskell = dontHaddock super.cloud-haskell;