12 lines
277 B
Nix
12 lines
277 B
Nix
with import ./lib;
|
|
|
|
self: super: {
|
|
tv = super.tv // {
|
|
vim = {
|
|
makePlugin = outPath: outPath // { inherit outPath; };
|
|
makeRuntimePath = concatMapStringsSep "," (getAttr "outPath");
|
|
};
|
|
vimPlugins = mapNixDir (path: self.callPackage path {}) ./.;
|
|
};
|
|
}
|