about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-08-08 22:45:56 +0200
committermaralorn <mail@maralorn.de>2023-08-08 22:49:51 +0200
commit3f8666295104180f95d27d209453dc1c83565b2f (patch)
tree8d728168882232584b7dc5946504e2229ffda5d9 /pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
parentd0cdaabcf9f988799baf6990216f94051207462f (diff)
downloadnixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar.gz
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar.bz2
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar.lz
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar.xz
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.tar.zst
nixlib-3f8666295104180f95d27d209453dc1c83565b2f.zip
haskell.packages.ghc9{0,2}.haskell-language-server: Fix build
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.nix8
1 files changed, 8 insertions, 0 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 38379c7221c8..59579a58867f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
@@ -58,6 +58,14 @@ self: super: {
   # weeder == 2.5.* requires GHC 9.4
   weeder = doDistribute self.weeder_2_4_1;
 
+  ormolu = self.ormolu_0_5_2_0.override {
+    Cabal-syntax = self.Cabal-syntax_3_8_1_0;
+  };
+
+  fourmolu = self.fourmolu_0_10_1_0.override {
+    Cabal-syntax = self.Cabal-syntax_3_8_1_0;
+  };
+
   # For GHC < 9.4, some packages need data-array-byte as an extra dependency
   hashable = addBuildDepends [ self.data-array-byte ] super.hashable;
   primitive = addBuildDepends [ self.data-array-byte ] super.primitive;