summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-08-17 01:31:39 +0200
committersternenseemann <sternenseemann@systemli.org>2023-08-17 09:31:56 +0200
commitc24a28822ea1cb41a79a0cce9f7fb7f429ecb382 (patch)
treefe2278db65ae6c5fc111df082a03384bbc5d270f /pkgs
parenta08eda861aa0de62137cd0973028ae2fb431c8fc (diff)
downloadnixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar.gz
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar.bz2
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar.lz
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar.xz
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.tar.zst
nixpkgs-c24a28822ea1cb41a79a0cce9f7fb7f429ecb382.zip
haskell.packages.ghc8107.ghc-lib: downgrade to 9.2.*
ghc-lib >= 9.4 won't compile with GHC 8.10 anymore, so we'll use the
newest version that still works (we used ghc-lib == 9.2.* with Stackage
LTS 20 as well).
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
index 947288894f2..4bf89ec4ea3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
@@ -116,8 +116,9 @@ self: super: {
     hls-overloaded-record-dot-plugin = null;
   }));
 
-  ghc-lib-parser = super.ghc-lib-parser_9_2_7_20230228;
-  ghc-lib-parser-ex = super.ghc-lib-parser-ex_9_2_1_1;
+  ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_7_20230228;
+  ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_2_1_1;
+  ghc-lib = doDistribute self.ghc-lib_9_2_7_20230228;
 
   mod = super.mod_0_1_2_2;
   path-io = doJailbreak super.path-io;