mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 00:45:17 -06:00
update to nvim 0.9.4
This commit is contained in:
parent
dc80e6953d
commit
b0024a47ee
2 changed files with 14 additions and 13 deletions
15
flake.nix
15
flake.nix
|
|
@ -30,23 +30,24 @@
|
|||
withRuby = false;
|
||||
withPython3 = false;
|
||||
};
|
||||
dependancies = with pkgs; [
|
||||
dependencies = with pkgs; [
|
||||
ripgrep
|
||||
];
|
||||
full-dependancies = with pkgs; [
|
||||
full-dependencies = with pkgs; [
|
||||
gopls
|
||||
] ++ dependancies;
|
||||
] ++ dependencies;
|
||||
neovim-with-deps = recursiveMerge [
|
||||
pkgs.neovim-unwrapped
|
||||
{ buildInputs = dependancies; }
|
||||
{ buildInputs = dependencies; }
|
||||
];
|
||||
neovim-with-full-deps = recursiveMerge [
|
||||
pkgs.neovim-unwrapped
|
||||
{ buildInputs = full-dependancies; }
|
||||
{ buildInputs = full-dependencies; }
|
||||
];
|
||||
in rec {
|
||||
packages.full = pkgs.wrapNeovim neovim-with-full-deps (base // {
|
||||
extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath full-dependancies}"'';
|
||||
withPython3 = true;
|
||||
extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath full-dependencies}"'';
|
||||
configure = {
|
||||
customRC =
|
||||
''
|
||||
|
|
@ -64,7 +65,7 @@
|
|||
};
|
||||
});
|
||||
packages.minimal = pkgs.wrapNeovim neovim-with-deps (base // {
|
||||
extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath dependancies}"'';
|
||||
extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath dependencies}"'';
|
||||
configure = {
|
||||
customRC =
|
||||
''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue