Unverified Commit 90ad681d authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vimPlugins.vectorcode-nvim: init at 0.6.10 (#413395)

parents 38799a02 6b8541bf
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{
  lib,
  vimUtils,
  vectorcode,
  vimPlugins,
}:
let
  inherit (vectorcode) src version;
in
vimUtils.buildVimPlugin {
  inherit src version;

  pname = "vectorcode.nvim";

  # nixpkgs-update: no auto update
  # This is built from the same source as vectorcode and will rebuild automatically

  sourceRoot = "${src.name}/plugin";

  dependencies = [
    vimPlugins.plenary-nvim
  ];

  buildInputs = [ vectorcode ];

  postPatch = ''
    cp -r ../lua .
  '';

  meta = {
    description = "Index and navigate your code repository using vectorcode";
    homepage = "https://github.com/Davidyz/VectorCode/blob/main/docs/neovim.md";
    inherit (vectorcode.meta) changelog license;
    maintainers = with lib.maintainers; [ sarahec ];
  };
}