blob: c143592ad326ef85b0bbff1703d08e04d909349e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
with import ./lib;
self: super: {
tv = super.tv // {
vim = {
makePlugin = outPath: outPath // { inherit outPath; };
makeRuntimePath = concatMapStringsSep "," (getAttr "outPath");
};
vimPlugins = mapNixDir (path: self.callPackage path {}) ./.;
};
}
|