overlays: add gruvbox-nvim-treesitter-fix

The version in nixpkgs is not up-to-date with regards to the
nvim-treesitter breaking changes that were recently introduced.
This commit is contained in:
Bruno BELANYI 2024-02-07 11:50:42 +00:00
parent 9e0930aca4
commit d6eceea08a
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
self: prev:
{
vimPlugins = prev.vimPlugins.extend (self.callPackage ./generated.nix { });
}

View File

@ -0,0 +1,14 @@
{ fetchFromGitHub }:
_final: prev: {
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (_: {
version = "2024-01-29";
src = fetchFromGitHub {
owner = "ellisonleao";
repo = "gruvbox.nvim";
rev = "6e4027ae957cddf7b193adfaec4a8f9e03b4555f";
sha256 = "sha256-jWnrRy/PT7D0UcPGL+XTbKHWvS0ixvbyqPtTzG9HY84=";
};
});
}