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 f3da326 commit 80775bfCopy full SHA for 80775bf
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
@@ -94,10 +94,11 @@ library
94
else
95
build-depends: unix
96
if flag(agpl)
97
- build-depends:
98
- brittany
99
- exposed-modules:
100
- Ide.Plugin.Brittany
+ if impl(ghc < 8.10)
+ build-depends:
+ brittany
+ exposed-modules:
101
+ Ide.Plugin.Brittany
102
103
ghc-options:
104
-Wall
0 commit comments