Will be removed when the plug-in gets its next bump.
This commit is contained in:
parent
6b7510cfd9
commit
ace266b02c
4
overlays/none-ls-root-bug/default.nix
Normal file
4
overlays/none-ls-root-bug/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
self: prev:
|
||||||
|
{
|
||||||
|
vimPlugins = prev.vimPlugins.extend (self.callPackage ./generated.nix { });
|
||||||
|
}
|
14
overlays/none-ls-root-bug/generated.nix
Normal file
14
overlays/none-ls-root-bug/generated.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ 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=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in a new issue