1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

haskell.packages.ghc92.haskell-language-server: Fix build by disabling plugins

This commit is contained in:
maralorn 2024-08-19 22:56:41 +02:00
parent 8cb4fc4341
commit 0d08913647
No known key found for this signature in database

View file

@ -69,10 +69,12 @@ self: super: {
haskell-language-server = lib.pipe super.haskell-language-server [
(disableCabalFlag "fourmolu")
(disableCabalFlag "ormolu")
(disableCabalFlag "cabal")
(disableCabalFlag "stylishHaskell")
(d: d.override {
ormolu = null;
fourmolu = null;
stan = null;
})
];