File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ common hlint
279
279
cpp-options : -Dhlint
280
280
281
281
common stan
282
- if flag(stan) && impl(ghc < 9.0 )
282
+ if flag(stan) && ( impl(ghc >= 8.8 ) && impl(ghc < 9.0 ) )
283
283
build-depends : hls-stan-plugin ^>= 1.0
284
284
cpp-options : -Dstan
285
285
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ flag pedantic
23
23
24
24
25
25
library
26
+ if impl(ghc <= 8.6 ) || impl(ghc >= 9.0 )
27
+ buildable : False
28
+ else
29
+ buildable : True
26
30
exposed-modules : Ide.Plugin.Stan
27
31
hs-source-dirs : src
28
32
build-depends :
@@ -50,6 +54,10 @@ library
50
54
OverloadedStrings
51
55
52
56
test-suite test
57
+ if impl(ghc <= 8.6 ) || impl(ghc >= 9.0 )
58
+ buildable : False
59
+ else
60
+ buildable : True
53
61
type : exitcode-stdio-1.0
54
62
default-language : Haskell2010
55
63
hs-source-dirs : test
You can’t perform that action at this time.
0 commit comments