Skip to content

Commit 3f6f108

Browse files
committed
Fix nix shell
1 parent 29454e1 commit 3f6f108

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
@@ -20,10 +20,11 @@ let
2020
shake-bench = gitignoreSource ../ghcide/shake-bench;
2121
hie-compat = gitignoreSource ../ghcide/hie-compat;
2222
hls-plugin-api = gitignoreSource ../hls-plugin-api;
23-
hls-tactics-plugin = gitignoreSource ../plugins/tactics;
24-
hls-hlint-plugin = gitignoreSource ../plugins/hls-hlint-plugin;
23+
hls-class-plugin = gitignoreSource ../plugins/hls-class-plugin;
2524
hls-explicit-imports-plugin = gitignoreSource ../plugins/hls-explicit-imports-plugin;
25+
hls-hlint-plugin = gitignoreSource ../plugins/hls-hlint-plugin;
2626
hls-retrie-plugin = gitignoreSource ../plugins/hls-retrie-plugin;
27+
hls-tactics-plugin = gitignoreSource ../plugins/tactics;
2728
});
2829
in
2930
{

shell.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ let defaultCompiler = "ghc" + lib.replaceStrings ["."] [""] haskellPackages.ghc.
2929
p.shake-bench
3030
p.hie-compat
3131
p.hls-plugin-api
32-
p.hls-tactics-plugin
33-
p.hls-hlint-plugin
32+
p.hls-class-plugin
3433
p.hls-explicit-imports-plugin
34+
p.hls-hlint-plugin
3535
p.hls-retrie-plugin
36+
p.hls-tactics-plugin
3637
];
3738

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

0 commit comments

Comments
 (0)