mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
vimPlugins.vim-closer: init at 2021-01-11
This commit is contained in:
parent
ca09360fdd
commit
82feec5f7b
@ -4597,6 +4597,18 @@ let
|
||||
meta.homepage = "https://github.com/guns/vim-clojure-static/";
|
||||
};
|
||||
|
||||
vim-closer = buildVimPluginFrom2Nix {
|
||||
pname = "vim-closer";
|
||||
version = "2020-10-24";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rstacruz";
|
||||
repo = "vim-closer";
|
||||
rev = "c61667d27280df171a285b1274dd3cf04cbf78d4";
|
||||
sha256 = "1dgcag4dibckpvsm8hr28yw10z81ic52sdm5narcwr1k6hjidxpn";
|
||||
};
|
||||
meta.homepage = "https://github.com/rstacruz/vim-closer/";
|
||||
};
|
||||
|
||||
vim-closetag = buildVimPluginFrom2Nix {
|
||||
pname = "vim-closetag";
|
||||
version = "2020-10-09";
|
||||
|
@ -395,6 +395,16 @@ self: super: {
|
||||
passthru.python3Dependencies = ps: with ps; [ beancount ];
|
||||
});
|
||||
|
||||
vim-closer = super.vim-closer.overrideAttrs(old: {
|
||||
patches = [
|
||||
# Fix duplicate tag in doc
|
||||
(fetchpatch {
|
||||
url = "https://github.com/rstacruz/vim-closer/commit/a504be8c7050e41b7dfc50c2362948e2cf7c5422.patch";
|
||||
sha256 = "065q30d913fm3pc7r5y53wmnb7q7bhv21qxavm65bkb91242d409";
|
||||
})
|
||||
];
|
||||
});
|
||||
|
||||
vim-codefmt = super.vim-codefmt.overrideAttrs(old: {
|
||||
dependencies = with super; [ vim-maktaba ];
|
||||
});
|
||||
|
@ -475,6 +475,7 @@ roxma/nvim-yarp
|
||||
roxma/vim-tmux-clipboard
|
||||
RRethy/vim-hexokinase
|
||||
RRethy/vim-illuminate
|
||||
rstacruz/vim-closer
|
||||
rust-lang/rust.vim
|
||||
ryanoasis/vim-devicons
|
||||
ryvnf/readline.vim
|
||||
|
Loading…
Reference in New Issue
Block a user