summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/vim/default.nix
blob: e0e2761d21917922f27b7219716df45e984088a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
with import <stockholm/lib>;

self: super: {
  tv = super.tv // {
    vim = {
      makePlugin = outPath: outPath // { inherit outPath; };
      makeRuntimePath = concatMapStringsSep "," (getAttr "outPath");
    };
    vimPlugins = mapNixDir (path: self.callPackage path {}) ./.;
  };
}