overlays: gruvbox-nvim-better-diff: simplify
This commit is contained in:
parent
8c03bff1cf
commit
9e0930aca4
|
@ -1,24 +1,10 @@
|
||||||
{ vimUtils, fetchFromGitHub }:
|
{ ... }:
|
||||||
|
|
||||||
_final: _prev: {
|
_final: prev: {
|
||||||
gruvbox-nvim = vimUtils.buildVimPlugin {
|
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (oa: {
|
||||||
pname = "gruvbox.nvim";
|
patches = (oa.patches or [ ]) ++ [
|
||||||
version = "2023-10-07";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "ellisonleao";
|
|
||||||
repo = "gruvbox.nvim";
|
|
||||||
rev = "477c62493c82684ed510c4f70eaf83802e398898";
|
|
||||||
sha256 = "0250c24c6n6yri48l288irdawhqs16qna3y74rdkgjd2jvh66vdm";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Inspired by https://github.com/ellisonleao/gruvbox.nvim/pull/291
|
# Inspired by https://github.com/ellisonleao/gruvbox.nvim/pull/291
|
||||||
./colours.patch
|
./colours.patch
|
||||||
];
|
];
|
||||||
|
});
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/ellisonleao/gruvbox.nvim/";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue