about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-02-15 13:55:32 +0100
committersternenseemann <sternenseemann@systemli.org>2023-02-15 13:55:32 +0100
commit476fea70908d47a1715a6870473b534bf020cf4a (patch)
tree8a4be5998ed72c6b75bd03c43cff879398430b72 /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent422878487062b3e20a9d54b5472810b5920b84b3 (diff)
downloadnixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar.gz
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar.bz2
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar.lz
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar.xz
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.tar.zst
nixlib-476fea70908d47a1715a6870473b534bf020cf4a.zip
haskell.packages.ghc884.ghc-lib: downgrade to match ghc-lib-parser
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 903b177efaff..54ce00760c2c 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -141,11 +141,12 @@ self: super: {
 
   hlint = self.hlint_3_2_8;
 
-  ghc-lib-parser = self.ghc-lib-parser_8_10_7_20220219;
+  ghc-lib-parser = doDistribute self.ghc-lib-parser_8_10_7_20220219;
+  ghc-lib = doDistribute self.ghc-lib_8_10_7_20220219;
 
   # ghc versions which don’t match the ghc-lib-parser-ex version need the
   # additional dependency to compile successfully.
-  ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser self.ghc-lib-parser-ex_8_10_0_24;
+  ghc-lib-parser-ex = doDistribute (addBuildDepend self.ghc-lib-parser self.ghc-lib-parser-ex_8_10_0_24);
 
   # has a restrictive lower bound on Cabal
   fourmolu = doJailbreak super.fourmolu;