From 3c4c6ebdd5577853404af0b1937ea4114e7c80a8 Mon Sep 17 00:00:00 2001 From: maralorn Date: Sun, 14 Dec 2025 15:04:57 +0100 Subject: [PATCH] haskell-language-server: Disable broken hlint plugin on ghc 9.10 --- pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix index 7dc391912154..ca028a636478 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix @@ -90,4 +90,8 @@ in # call-stack = dontCheck super.call-stack; # https://github.com/sol/call-stack/issues/19 monad-dijkstra = dontCheck super.monad-dijkstra; # needs hlint 3.10 + + # Workaround https://github.com/haskell/haskell-language-server/issues/4674 + haskell-language-server = haskellLib.disableCabalFlag "hlint" super.haskell-language-server; + }