summaryrefslogtreecommitdiffstats
path: root/pkgs/vim/default.nix
blob: f83ca3a19003c9829d8dd988461548e8f781c262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
self: super: let
  inherit (super) lib mylib;
in {
  tv = super.tv // {
    vim = {
      makePlugin = outPath: outPath // { inherit outPath; };
      makeRuntimePath =
        lib.concatMapStringsSep "," (builtins.getAttr "outPath");
    };
    vimPlugins = mylib.mapNixDir (path: self.callPackage path {}) ./.;
  };
}