flake: bump inputs
Some checks failed
ci/woodpecker/push/check Pipeline failed

And remove the overlay for `none-ls`, which has been fixed.

This reverts commit ace266b02c.
This commit is contained in:
Bruno BELANYI 2024-08-07 14:15:12 +00:00
parent 93dfe04114
commit f240730c4f
3 changed files with 18 additions and 36 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: {
none-ls-nvim = prev.none-ls-nvim.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
# https://github.com/nvimtools/none-ls.nvim/pull/163
(fetchpatch {
name = "fix-get-root-directory.patch";
url = "https://github.com/nvimtools/none-ls.nvim/commit/2cde745aadc2c36f6860a77a556494870675771a.patch";
hash = "sha256-BtIjrT6ME2mR/5Ez9h+6r+fy0jYkBkw6/A9NConKRVs=";
})
];
});
}