flake: bump inputs
All checks were successful
ci/woodpecker/push/check Pipeline was successful

And undo the overlay for `gruvbox-nvim`.

This reverts commit ccab4d0952.
This commit is contained in:
Bruno BELANYI 2024-05-29 11:13:30 +00:00
parent 442d267ca2
commit 5af0230c58
3 changed files with 15 additions and 33 deletions

View file

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

View file

@ -1,14 +0,0 @@
{ fetchpatch, ... }:
_final: prev: {
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
# https://github.com/ellisonleao/gruvbox.nvim/pull/319
(fetchpatch {
name = "add-Delimiter-highlight-group.patch";
url = "https://github.com/ellisonleao/gruvbox.nvim/commit/20f90039564b293330bf97acc36dda8dd9e721a0.patch";
hash = "sha256-it4SbgK/2iDVyvtXBfVW2YN9DqELfKsMkuCaunERGcE=";
})
];
});
}