mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
treewide: Disable fixup phase for builds
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
4f80458d35
commit
a04b93fa7b
2 changed files with 11 additions and 2 deletions
|
|
@ -19,7 +19,10 @@ let
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nvim = wrapNeovimUnstable neovim-unwrapped nvimConfig;
|
nvim = (wrapNeovimUnstable neovim-unwrapped nvimConfig).overrideAttrs {
|
||||||
|
dontFixup = true;
|
||||||
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
runCommand "lspconfig-servers"
|
runCommand "lspconfig-servers"
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -220,7 +220,13 @@ in
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
wrappedNeovim = pkgs.wrapNeovimUnstable package neovimConfig;
|
# TODO: 2025-01-06
|
||||||
|
# Wait for user feedback on disabling the fixup phase.
|
||||||
|
# Ideally this will be upstreamed to nixpkgs.
|
||||||
|
# See https://github.com/nix-community/nixvim/pull/3660#discussion_r2326250439
|
||||||
|
wrappedNeovim = (pkgs.wrapNeovimUnstable package neovimConfig).overrideAttrs {
|
||||||
|
dontFixup = true;
|
||||||
|
};
|
||||||
|
|
||||||
customRC = helpers.concatNonEmptyLines [
|
customRC = helpers.concatNonEmptyLines [
|
||||||
(helpers.wrapVimscriptForLua wrappedNeovim.initRc)
|
(helpers.wrapVimscriptForLua wrappedNeovim.initRc)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue