overlays: gruvbox-nvim-better-diff: simplify

This commit is contained in:
Bruno BELANYI 2024-02-07 11:49:42 +00:00
parent 8c03bff1cf
commit 9e0930aca4
1 changed files with 5 additions and 19 deletions

View File

@ -1,24 +1,10 @@
{ vimUtils, fetchFromGitHub }:
{ ... }:
_final: _prev: {
gruvbox-nvim = vimUtils.buildVimPlugin {
pname = "gruvbox.nvim";
version = "2023-10-07";
src = fetchFromGitHub {
owner = "ellisonleao";
repo = "gruvbox.nvim";
rev = "477c62493c82684ed510c4f70eaf83802e398898";
sha256 = "0250c24c6n6yri48l288irdawhqs16qna3y74rdkgjd2jvh66vdm";
};
patches = [
_final: prev: {
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
# Inspired by https://github.com/ellisonleao/gruvbox.nvim/pull/291
./colours.patch
];
meta = {
homepage = "https://github.com/ellisonleao/gruvbox.nvim/";
};
};
});
}