From 07f392cd0c12354a45f565ee5e5f445bfa97ff90 Mon Sep 17 00:00:00 2001 From: oxalica Date: Thu, 17 Jun 2021 01:33:13 +0800 Subject: [PATCH] vimPlugins.{vim-speeddating,vim-surround,vim-unimpaired}: add dependency vim-repeat --- pkgs/misc/vim-plugins/overrides.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix index 201304023739..0901531a8aa3 100644 --- a/pkgs/misc/vim-plugins/overrides.nix +++ b/pkgs/misc/vim-plugins/overrides.nix @@ -755,6 +755,10 @@ self: super: { dependencies = with self; [ vim-addon-mw-utils tlib_vim ]; }); + vim-speeddating = super.vim-speeddating.overrideAttrs (old: { + dependencies = with self; [ vim-repeat ]; + }); + vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: { postPatch = old.postPatch or "" + '' substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \ @@ -763,6 +767,14 @@ self: super: { ''; }); + vim-surround = super.vim-surround.overrideAttrs (old: { + dependencies = with self; [ vim-repeat ]; + }); + + vim-unimpaired = super.vim-unimpaired.overrideAttrs (old: { + dependencies = with self; [ vim-repeat ]; + }); + vim-wakatime = super.vim-wakatime.overrideAttrs (old: { buildInputs = [ python ]; });