Merge pull request #132734 from Mic92/nvim-fallout

This commit is contained in:
Sandro 2021-08-05 09:22:52 +02:00 committed by GitHub
commit 0309399b47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -54,7 +54,8 @@ rec {
}));
buildVimPluginFrom2Nix = attrs: buildVimPlugin ({
dontBuild = true;
dontConfigure = true;
# vim plugins may override this
buildPhase = ":";
configurePhase =":";
} // attrs);
}

View File

@ -501,10 +501,7 @@ self: super: {
telescope-fzf-native-nvim = super.telescope-fzf-native-nvim.overrideAttrs (old: {
dependencies = with self; [ telescope-nvim ];
dontBuild = false;
buildPhase = "make";
meta.platforms = lib.platforms.all;
});