1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #120629 from jupblb/gruvbox-nvim

This commit is contained in:
Sandro 2021-04-30 03:28:38 +02:00 committed by GitHub
commit 5c63565c74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View file

@ -1761,6 +1761,18 @@ let
meta.homepage = "https://github.com/gruvbox-community/gruvbox/";
};
gruvbox-nvim = buildVimPluginFrom2Nix {
pname = "gruvbox-nvim";
version = "2021-04-23";
src = fetchFromGitHub {
owner = "npxbr";
repo = "gruvbox.nvim";
rev = "9dc9ea64fd2fb255a39210e227fc7146855434af";
sha256 = "04d8knfhidxdm8lzc15hklq1mm6i5kmdkik4iln4cbhd3cg33iqy";
};
meta.homepage = "https://github.com/npxbr/gruvbox.nvim/";
};
gundo-vim = buildVimPluginFrom2Nix {
pname = "gundo-vim";
version = "2021-02-21";

View file

@ -273,6 +273,10 @@ self: super: {
dependencies = with self; [ plenary-nvim ];
});
gruvbox-nvim = super.gruvbox-nvim.overrideAttrs (old: {
dependencies = with self; [ lush-nvim ];
});
jedi-vim = super.jedi-vim.overrideAttrs (old: {
# checking for python3 support in vim would be neat, too, but nobody else seems to care
buildInputs = [ python3.pkgs.jedi ];
@ -601,7 +605,7 @@ self: super: {
libiconv
];
cargoSha256 = "25UkYKhlGmlDg4fz1jZHjpQn5s4k5FKlFK0MU8YM5SE=";
cargoSha256 = "1c8bwvwd23d7c3bk1ky1i8xgfz10dr8nqqcvp20g8rldjl8p2r08";
};
in
''

View file

@ -437,6 +437,7 @@ norcalli/nvim-colorizer.lua
norcalli/nvim-terminal.lua
norcalli/snippets.nvim
npxbr/glow.nvim@main
npxbr/gruvbox.nvim@main
ntpeters/vim-better-whitespace
numirias/semshi
nvie/vim-flake8