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 | 54f82ea7cbd2c1bb14761275d9310a0004c893fa (patch) | |
tree | 594991a0534f5f986151f7a0c912d840b0245034 /tv/5pkgs/vim/default.nix | |
parent | 6a82f294335cbc0991f7a95355adfb9f7b7e6f43 (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 5582be3fd..e0e2761d2 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 {}) ./.; }; } |