From 87b3137876da8c58bbd6c8c4b604bf9d282304ab Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 11 Feb 2025 22:56:02 +0100 Subject: [PATCH] haskellPackages.large-generics: allow base >= 4.19 --- 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 340563442329..cca07fd37ed9 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2804,6 +2804,10 @@ self: super: { # 2024-01-24: https://github.com/haskellari/tree-diff/issues/79 tree-diff = dontCheck super.tree-diff; + # base <4.19 + # https://github.com/well-typed/large-records/issues/168 + large-generics = doJailbreak super.large-generics; + # Too strict bounds on base, ghc-prim, primitive # https://github.com/kowainik/typerep-map/pull/128 typerep-map = doJailbreak super.typerep-map;