File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
plugins/hls-fourmolu-plugin Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ library
31
31
build-depends :
32
32
, base >= 4.12 && < 5
33
33
, filepath
34
- , fourmolu ^>= 0.9 || ^>= 0.10 || ^>= 0.11 || ^>= 0.12 || ^>= 0.13
35
34
, ghc
36
35
, ghc-boot-th
37
36
, ghcide == 2.1.0.0
@@ -43,6 +42,15 @@ library
43
42
, text
44
43
, transformers
45
44
45
+ if impl(ghc >= 8.10 ) && impl(ghc < 9.0 )
46
+ build-depends : fourmolu ^>= 0.9
47
+ elif impl(ghc >= 9.0 ) && impl(ghc < 9.2 )
48
+ build-depends : fourmolu ^>= 0.11
49
+ elif impl(ghc >= 9.2 ) && impl(ghc < 9.8 )
50
+ build-depends : fourmolu ^>= 0.13
51
+ else
52
+ buildable : false
53
+
46
54
-- fourmolu 0.9.0 fails to build on Windows CI for reasons unknown
47
55
if impl(ghc >= 9.2 ) && os(windows) && impl(ghc < 9.4 )
48
56
build-depends : fourmolu > 0.9.0.0 || < 0.9.0.0
You can’t perform that action at this time.
0 commit comments