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

12 lines
287 B
Nix
Raw Normal View History

2019-05-21 19:47:43 +00:00
with import <stockholm/lib>;
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 {}) ./.;
};
}