about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-03-02 13:23:03 +0100
committersternenseemann <sternenseemann@systemli.org>2023-03-02 13:58:51 +0100
commit5a86855e006de9420ed5b2f799900bbefb691e53 (patch)
tree61d1914030e06db7b46079ac24a02d83d9f40f97 /pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
parent0a660a75c50b6cf6628eeaf8d12343ece3479941 (diff)
downloadnixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar.gz
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar.bz2
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar.lz
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar.xz
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.tar.zst
nixlib-5a86855e006de9420ed5b2f799900bbefb691e53.zip
haskell.packages.*: reflect terminfo update for cross compilation
terminfo had a new release on hackage and we only ship the latest
version currently, so every GHC gets the newest version. Whether this is
correct, is another question, occurs to me – we'll have to look into
whether we should fix this at some point.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
index 9fbeec03e4b5..3efd37a7758e 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
@@ -40,7 +40,7 @@ self: super: {
   stm = null;
   template-haskell = null;
   # GHC only builds terminfo if it is a native compiler
-  terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_5;
+  terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_6;
   text = null;
   time = null;
   transformers = null;