2022-12-09 00:31:56 +00:00
|
|
|
with import ./lib;
|
2019-05-21 19:47:43 +00:00
|
|
|
|
|
|
|
self: super: {
|
|
|
|
tv = super.tv // {
|
2022-12-05 14:10:15 +00:00
|
|
|
vim = {
|
|
|
|
makePlugin = outPath: outPath // { inherit outPath; };
|
|
|
|
makeRuntimePath = concatMapStringsSep "," (getAttr "outPath");
|
|
|
|
};
|
2019-05-21 19:47:43 +00:00
|
|
|
vimPlugins = mapNixDir (path: self.callPackage path {}) ./.;
|
|
|
|
};
|
|
|
|
}
|