Skip to content

Commit ab49ba4

Browse files
authored
Merge pull request #539 from NotAShelf/flutter-fix
wrapper/build: disable failing require hook checks for flutter-tools
2 parents aa7b55f + 7dbe7a0 commit ab49ba4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

modules/plugins/languages/dart.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ in {
130130

131131
(mkIf cfg.lsp.enable {
132132
vim.lsp.lspconfig.enable = true;
133-
134133
vim.lsp.lspconfig.sources.dart-lsp = servers.${cfg.lsp.server}.lspConfig;
135134
})
136135

modules/wrapper/build/config.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,17 @@
4949
flutter-tools-patched = buildPlug {
5050
pname = "flutter-tools";
5151
patches = [./patches/flutter-tools.patch];
52+
53+
# Disable failing require check hook checks
54+
nvimSkipModule = [
55+
"flutter-tools.devices"
56+
"flutter-tools.dap"
57+
"flutter-tools.runners.job_runner"
58+
"flutter-tools.decorations"
59+
"flutter-tools.commands"
60+
"flutter-tools.executable"
61+
"flutter-tools.dev_tools"
62+
];
5263
};
5364
};
5465

0 commit comments

Comments
 (0)