Bruno BELANYI
d6eceea08a
The version in nixpkgs is not up-to-date with regards to the nvim-treesitter breaking changes that were recently introduced.
15 lines
349 B
Nix
15 lines
349 B
Nix
{ 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=";
|
|
};
|
|
});
|
|
}
|