We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 610b82e commit 1f26704Copy full SHA for 1f26704
exe/Main.hs
@@ -106,7 +106,9 @@ idePlugins includeExamples = pluginDescToIdePlugins allPlugins
106
, Ormolu.descriptor "ormolu"
107
, StylishHaskell.descriptor "stylish-haskell"
108
#if AGPL
109
+#if !MIN_VERSION_ghc(8,10,1)
110
, Brittany.descriptor "brittany"
111
+#endif
112
#endif
113
, Eval.descriptor "eval"
114
]
haskell-language-server.cabal
@@ -95,10 +95,11 @@ library
95
else
96
build-depends: unix
97
if flag(agpl)
98
- build-depends:
99
- brittany
100
- exposed-modules:
101
- Ide.Plugin.Brittany
+ if impl(ghc < 8.10)
+ build-depends:
+ brittany
+ exposed-modules:
102
+ Ide.Plugin.Brittany
103
104
ghc-options:
105
-Wall
0 commit comments