diff --git a/pkgs/applications/editors/vim/plugins/utils/get-plugins.nix b/pkgs/applications/editors/vim/plugins/utils/get-plugins.nix index c32f3880d6f2..4c874e98cda4 100644 --- a/pkgs/applications/editors/vim/plugins/utils/get-plugins.nix +++ b/pkgs/applications/editors/vim/plugins/utils/get-plugins.nix @@ -1,10 +1,9 @@ with import { }; let inherit (vimUtils.override { inherit vim; }) buildVimPlugin; - inherit (neovimUtils) buildNeovimPlugin; generated = callPackage { - inherit buildNeovimPlugin buildVimPlugin; + inherit buildVimPlugin; } { } { }; hasChecksum = @@ -15,16 +14,15 @@ let "outputHash" ] value; - parse = name: value: { - pname = value.pname; - version = value.version; + parse = _name: value: { + inherit (value) pname version; homePage = value.meta.homepage; checksum = if hasChecksum value then { submodules = value.src.fetchSubmodules or false; sha256 = value.src.outputHash; - rev = value.src.rev; + inherit (value.src) rev; } else null;