diff options
author | tv <tv@krebsco.de> | 2022-12-05 15:10:15 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2022-12-05 17:43:12 +0100 |
commit | e837b044790e4e24062de224db9ae8147655057e (patch) | |
tree | e317b8d01fdf9593131e2e1ee19c338d8de003cc /tv/5pkgs/vim/default.nix | |
parent | 06773bdd5890befc215a60d069cee6272b4d49a3 (diff) |
tv vim: rtp -> outPath
Diffstat (limited to 'tv/5pkgs/vim/default.nix')
-rw-r--r-- | tv/5pkgs/vim/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tv/5pkgs/vim/default.nix b/tv/5pkgs/vim/default.nix index 5582be3..e0e2761 100644 --- a/tv/5pkgs/vim/default.nix +++ b/tv/5pkgs/vim/default.nix @@ -2,6 +2,10 @@ with import <stockholm/lib>; self: super: { tv = super.tv // { + vim = { + makePlugin = outPath: outPath // { inherit outPath; }; + makeRuntimePath = concatMapStringsSep "," (getAttr "outPath"); + }; vimPlugins = mapNixDir (path: self.callPackage path {}) ./.; }; } |