diff options
Diffstat (limited to 'tv/5pkgs/vim/default.nix')
-rw-r--r-- | tv/5pkgs/vim/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tv/5pkgs/vim/default.nix b/tv/5pkgs/vim/default.nix index 5582be3fd..c143592ad 100644 --- a/tv/5pkgs/vim/default.nix +++ b/tv/5pkgs/vim/default.nix @@ -1,7 +1,11 @@ -with import <stockholm/lib>; +with import ./lib; self: super: { tv = super.tv // { + vim = { + makePlugin = outPath: outPath // { inherit outPath; }; + makeRuntimePath = concatMapStringsSep "," (getAttr "outPath"); + }; vimPlugins = mapNixDir (path: self.callPackage path {}) ./.; }; } |