mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fix(flake): clang-tools moved to nativeBuildInputs (#26955)
* fix(flake): clang-tools moved to nativeBuildInputs Buildtime binaries should go in `nativeBuildInputs` Before `clang-tools` version was overwriten breaking the Lsp. Relevant issues: https://github.com/NixOS/nixpkgs/issues/76486 * remove cmake, available in the nixpkgs derivation
This commit is contained in:
parent
07a7c0ec99
commit
e32af31ee8
@ -134,7 +134,6 @@
|
|||||||
|
|
||||||
buildInputs = with pkgs;
|
buildInputs = with pkgs;
|
||||||
oa.buildInputs ++ [
|
oa.buildInputs ++ [
|
||||||
cmake
|
|
||||||
lua.pkgs.luacheck
|
lua.pkgs.luacheck
|
||||||
sumneko-lua-language-server
|
sumneko-lua-language-server
|
||||||
pythonEnv
|
pythonEnv
|
||||||
@ -142,6 +141,10 @@
|
|||||||
jq # jq for scripts/vim-patch.sh -r
|
jq # jq for scripts/vim-patch.sh -r
|
||||||
shellcheck # for `make shlint`
|
shellcheck # for `make shlint`
|
||||||
doxygen # for script/gen_vimdoc.py
|
doxygen # for script/gen_vimdoc.py
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = with pkgs;
|
||||||
|
oa.nativeBuildInputs ++ [
|
||||||
clang-tools # for clangd to find the correct headers
|
clang-tools # for clangd to find the correct headers
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user