haskell.packages.ghc9{2,4}.haskell-language-server: remove plugin overrides

Now that the base compiler has been updated to GHC 9.2, the cabal file
removes those unsupported plugins.
This commit is contained in:
Naïm Favier 2022-11-24 13:52:53 +01:00 committed by maralorn
parent 3d095b8b6e
commit 38b38881a4
2 changed files with 0 additions and 11 deletions

View file

@ -98,14 +98,6 @@ self: super: {
# 2022-08-01: Tests are broken on ghc 9.2.4: https://github.com/wz1000/HieDb/issues/46
hiedb = dontCheck super.hiedb;
# 2022-02-05: The following plugins dont work yet on ghc9.2.
# Compare: https://haskell-language-server.readthedocs.io/en/latest/supported-versions.html
haskell-language-server = super.haskell-language-server.override {
hls-haddock-comments-plugin = null;
hls-splice-plugin = null;
hls-tactics-plugin = null;
};
# https://github.com/fpco/inline-c/pull/131
inline-c-cpp =
(if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x)

View file

@ -192,10 +192,7 @@ in {
hls-ormolu-plugin = null;
hls-rename-plugin = null;
hls-stylish-haskell-plugin = null;
hls-tactics-plugin = null;
hls-haddock-comments-plugin = null;
hls-retrie-plugin = null;
hls-splice-plugin = null;
};
# https://github.com/tweag/ormolu/issues/941