stockholm/tv/5pkgs/vim/default.nix
2022-12-09 01:34:31 +01:00

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 {}) ./.;
};
}