From 726f64a78e77dfcd131438fe3f3fff1131c630c9 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 11 Feb 2025 22:57:14 +0100 Subject: [PATCH] haskellPackages.heystone: 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 cca07fd37ed9..92c610d4c0f0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2808,6 +2808,10 @@ self: super: { # https://github.com/well-typed/large-records/issues/168 large-generics = doJailbreak super.large-generics; + # Too strict bound on bytestring < 0.12 + # https://github.com/raehik/heystone/issues/2 + heystone = doJailbreak super.heystone; + # Too strict bounds on base, ghc-prim, primitive # https://github.com/kowainik/typerep-map/pull/128 typerep-map = doJailbreak super.typerep-map;