Skip to content

Commit

Permalink
haskell.packages.ghc941.terminfo: not a core pkg if cross compiling
Browse files Browse the repository at this point in the history
Reference NixOS#182873 and NixOS#182785.
  • Loading branch information
sternenseemann authored and j6carey committed Sep 26, 2023
1 parent 7ea76af commit 565f773
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
Expand Up @@ -39,7 +39,8 @@ self: super: {
stm = null;
system-cxx-std-lib = null;
template-haskell = null;
terminfo = 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;
text = null;
time = null;
transformers = null;
Expand Down

0 comments on commit 565f773

Please sign in to comment.