haskellPackages.haskell-language-server: add missing dep

This is needed because hackage2nix doesn't know we want to disable the
`auto` flag, so it adds the wrong dependencies.
This commit is contained in:
Naïm Favier 2022-11-24 14:13:14 +01:00 committed by maralorn
parent 38b38881a4
commit 1d8f8eaf38

View file

@ -1611,7 +1611,7 @@ self: super: {
});
# For -f-auto see cabal.project in haskell-language-server.
ghc-lib-parser-ex = disableCabalFlag "auto" super.ghc-lib-parser-ex;
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex);
# 2021-05-08: Tests fail: https://github.com/haskell/haskell-language-server/issues/1809
hls-eval-plugin = dontCheck super.hls-eval-plugin;