about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2024-01-04 11:54:08 +0100
committersternenseemann <sternenseemann@systemli.org>2024-01-04 11:54:08 +0100
commit4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e (patch)
tree32fa4011d6015b5a4abe89f616239130c11f1f39 /pkgs/development/haskell-modules
parentaa4b7ce79daca93d9f95a6ea021595a6d74fe48a (diff)
downloadnixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar.gz
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar.bz2
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar.lz
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar.xz
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.tar.zst
nixlib-4f98fa0e6a277fa9dc17c143dca4b060c5eb0b5e.zip
haskell.packages.ghc981.terminfo_0_4_1_6: allow base 4.20
We need this attribute to work for cross compilation. Unfortunately the
updated bounds are not yet released to Hackage.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
index 17f6415874f9..c2718537a283 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
@@ -72,4 +72,7 @@ self: super: {
 
   # Break out of "yaml >=0.10.4.0 && <0.11": https://github.com/commercialhaskell/stack/issues/4485
   stack = doJailbreak super.stack;
+  # Too strict bound on base, believe it or not.
+  # https://github.com/judah/terminfo/pull/55#issuecomment-1876894232
+  terminfo_0_4_1_6 = doJailbreak super.terminfo_0_4_1_6;
 }