Skip to content

Commit c89afc1

Browse files
committed
Enable more plugins for ghc 9.0
1 parent 3e55c89 commit c89afc1

File tree

4 files changed

+8
-33
lines changed

4 files changed

+8
-33
lines changed

cabal-ghc901.project

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ packages:
66
./ghcide
77
./hls-plugin-api
88
./hls-test-utils
9-
-- ./plugins/hls-tactics-plugin
9+
-- ./plugins/hls-tactics-plugin
1010
-- ./plugins/hls-brittany-plugin
1111
-- ./plugins/hls-stylish-haskell-plugin
1212
-- ./plugins/hls-fourmolu-plugin
@@ -18,7 +18,7 @@ packages:
1818
./plugins/hls-rename-plugin
1919
./plugins/hls-retrie-plugin
2020
./plugins/hls-haddock-comments-plugin
21-
-- ./plugins/hls-splice-plugin
21+
./plugins/hls-splice-plugin
2222
./plugins/hls-floskell-plugin
2323
./plugins/hls-pragmas-plugin
2424
./plugins/hls-module-name-plugin
@@ -30,25 +30,12 @@ package *
3030
ghc-options: -haddock
3131
test-show-details: direct
3232

33-
source-repository-package
34-
type: git
35-
location: https://github.com/jwaldmann/blaze-textual.git
36-
tag: d8ee6cf80e27f9619d621c936bb4bda4b99a183f
37-
-- https://github.com/jwaldmann/blaze-textual/commit/d8ee6cf80e27f9619d621c936bb4bda4b99a183f
38-
-- https://github.com/bos/blaze-textual/issues/13
39-
4033
source-repository-package
4134
type: git
4235
location: https://github.com/mithrandi/czipwith.git
4336
tag: b6245884ae83e00dd2b5261762549b37390179f8
4437
-- https://github.com/lspitzner/czipwith/pull/2
4538

46-
-- Head of hie-bios
47-
source-repository-package
48-
type: git
49-
location: https://github.com/mpickering/hie-bios
50-
tag: 1875bff093983a0506f80e214eda27e7419da3bc
51-
5239
-- Head of hiedb
5340
source-repository-package
5441
type: git
@@ -77,11 +64,11 @@ source-repository-package
7764

7865
write-ghc-environment-files: never
7966

80-
index-state: 2021-08-08T02:21:16Z
67+
index-state: 2021-08-31T02:21:16Z
8168

8269
constraints:
8370
-- These plugins doesn't work on GHC9 yet
84-
haskell-language-server -brittany -class -fourmolu -splice -stylishhaskell -tactic -refineImports
71+
haskell-language-server -brittany -class -fourmolu -stylishhaskell -tactic
8572

8673

8774
allow-newer:

cabal-ghc921.project

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ package *
3030
ghc-options: -haddock
3131
test-show-details: direct
3232

33-
source-repository-package
34-
type: git
35-
location: https://github.com/jwaldmann/blaze-textual.git
36-
tag: d8ee6cf80e27f9619d621c936bb4bda4b99a183f
37-
-- https://github.com/jwaldmann/blaze-textual/commit/d8ee6cf80e27f9619d621c936bb4bda4b99a183f
38-
-- https://github.com/bos/blaze-textual/issues/13
39-
4033
source-repository-package
4134
type: git
4235
location: https://github.com/mithrandi/czipwith.git
@@ -63,12 +56,6 @@ source-repository-package
6356
subdir: dependent-sum-template
6457
-- https://github.com/obsidiansystems/dependent-sum/pull/59
6558

66-
-- Head of hie-bios
67-
source-repository-package
68-
type: git
69-
location: https://github.com/mpickering/hie-bios
70-
tag: 1875bff093983a0506f80e214eda27e7419da3bc
71-
7259
-- Head of hiedb
7360
source-repository-package
7461
type: git
@@ -84,7 +71,7 @@ source-repository-package
8471

8572
write-ghc-environment-files: never
8673

87-
index-state: 2021-08-17T02:21:16Z
74+
index-state: 2021-08-31T02:21:16Z
8875

8976
constraints:
9077
-- These plugins doesn't work on GHC9 yet

cabal.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package *
3333

3434
write-ghc-environment-files: never
3535

36-
index-state: 2021-08-12T12:00:38Z
36+
index-state: 2021-08-31T12:00:38Z
3737

3838
constraints:
3939
hyphenation +embed

ghcide/src/Control/Concurrent/Strict.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module Control.Concurrent.Strict
44
,module Control.Concurrent.Extra
55
) where
66

7-
import Control.Concurrent.Extra hiding (modifyVar, modifyVar_)
7+
import Control.Concurrent.Extra hiding (modifyVar, modifyVar',
8+
modifyVar_)
89
import qualified Control.Concurrent.Extra as Extra
910
import Control.Exception (evaluate)
1011
import Control.Monad (void)

0 commit comments

Comments
 (0)