stockholm/tv/5pkgs/vim/default.nix

12 lines
277 B
Nix
Raw Normal View History

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