1
0
Fork 0
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:
saygo-png 2025-09-03 19:50:00 +02:00 committed by Matt Sturgeon
parent 4f80458d35
commit a04b93fa7b
2 changed files with 11 additions and 2 deletions

View file

@ -19,7 +19,10 @@ let
];
};
nvim = wrapNeovimUnstable neovim-unwrapped nvimConfig;
nvim = (wrapNeovimUnstable neovim-unwrapped nvimConfig).overrideAttrs {
dontFixup = true;
};
in
runCommand "lspconfig-servers"
{

View file

@ -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 [
(helpers.wrapVimscriptForLua wrappedNeovim.initRc)