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

vimPlugins: remove `buildVimPlugin` from overrides.nix (#438708)

parents 022fffcf c90c292c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ mapAliases (
    feline-nvim = throw "feline.nvim has been removed: upstream deleted repository. Consider using lualine"; # Added 2025-02-09
    fugitive = vim-fugitive;
    floating-nvim = throw "floating.nvim has been removed: abandoned by upstream. Use popup-nvim or nui-nvim"; # Added 2024-11-26
    fzfWrapper = fzf-wrapper;
    ghc-mod-vim = ghcmod-vim;
    ghcmod = ghcmod-vim;
    gleam-vim = throw "gleam.vim has been removed: its code was merged into vim."; # Added 2025-06-10
@@ -94,6 +95,7 @@ mapAliases (
    ipython = vim-ipython;
    latex-live-preview = vim-latex-live-preview;
    maktaba = vim-maktaba;
    minsnip-nvim = throw "the upstream repository got deleted"; # added 2025-08-30
    multiple-cursors = vim-multiple-cursors;
    necoGhc = neco-ghc; # backwards compat, added 2014-10-18
    neocomplete = neocomplete-vim;
+0 −1
Original line number Diff line number Diff line
@@ -55,7 +55,6 @@ let
  # If additional modifications to the build process are required,
  # add to ./overrides.nix.
  overrides = callPackage ./overrides.nix {
    inherit buildVimPlugin;
    inherit llvmPackages;
  };

+14 −0
Original line number Diff line number Diff line
{
  vimUtils,
  ethersync,
}:
vimUtils.buildVimPlugin rec {
  inherit (ethersync)
    pname
    version
    src
    meta
    ;

  sourceRoot = "${src.name}/nvim-plugin";
}
+14 −0
Original line number Diff line number Diff line
{
  vimUtils,
  fzf,
}:
# Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim
# plugin, since part of the fzf vim plugin is included in the main fzf
# program.
vimUtils.buildVimPlugin {
  inherit (fzf) src version;
  pname = "fzf";
  postInstall = ''
    ln -s ${fzf}/bin/fzf $target/bin/fzf
  '';
}
+11 −0
Original line number Diff line number Diff line
{
  vimUtils,
  hurl,
}:
vimUtils.buildVimPlugin {
  pname = "hurl";
  inherit (hurl) version;

  # https://hurl.dev/
  src = "${hurl.src}/contrib/vim";
}
Loading