Skip to content

Commit 4d99b3a

Browse files
committed
Fix nix shell
1 parent cd761ed commit 4d99b3a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

nix/default.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ let
1919
ghcide = gitignoreSource ../ghcide;
2020
hie-compat = gitignoreSource ../ghcide/hie-compat;
2121
hls-plugin-api = gitignoreSource ../hls-plugin-api;
22-
hls-tactics-plugin = gitignoreSource ../plugins/tactics;
23-
hls-hlint-plugin = gitignoreSource ../plugins/hls-hlint-plugin;
22+
hls-class-plugin = gitignoreSource ../plugins/hls-class-plugin;
2423
hls-explicit-imports-plugin = gitignoreSource ../plugins/hls-explicit-imports-plugin;
24+
hls-hlint-plugin = gitignoreSource ../plugins/hls-hlint-plugin;
2525
hls-retrie-plugin = gitignoreSource ../plugins/hls-retrie-plugin;
26+
hls-tactics-plugin = gitignoreSource ../plugins/tactics;
2627
});
2728
in
2829
{

shell.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ let defaultCompiler = "ghc" + lib.replaceStrings ["."] [""] haskellPackages.ghc.
2828
p.ghcide
2929
p.hie-compat
3030
p.hls-plugin-api
31-
p.hls-tactics-plugin
32-
p.hls-hlint-plugin
31+
p.hls-class-plugin
3332
p.hls-explicit-imports-plugin
33+
p.hls-hlint-plugin
3434
p.hls-retrie-plugin
35+
p.hls-tactics-plugin
3536
];
3637

3738
isSupported = compiler == "default" || compiler == defaultCompiler;

0 commit comments

Comments
 (0)