Temporarily patch rbw
This commit is contained in:
parent
3b9f2d3dec
commit
527c6ba4e5
12
overlay.nix
12
overlay.nix
|
@ -86,6 +86,17 @@ let
|
|||
})
|
||||
];
|
||||
};
|
||||
|
||||
# rbw: https://github.com/doy/rbw/pull/189
|
||||
rbw = prev.rbw.overrideAttrs (attrs: {
|
||||
patches = (attrs.patches or [ ]) ++ [
|
||||
(final.fetchurl
|
||||
{
|
||||
url = "https://github.com/doy/rbw/pull/189.patch";
|
||||
hash = "sha256-617nYL9Jmu+inpAzDu/+iYXhajckzpsxW+jlhcRwseM=";
|
||||
})
|
||||
];
|
||||
});
|
||||
};
|
||||
|
||||
overlay-libs = final: prev: {
|
||||
|
@ -95,7 +106,6 @@ let
|
|||
overlay-packages = final: prev: {
|
||||
kak-tree-sitter = final.callPackage ./packages/common/kak-tree-sitter.nix { rustPlatform = final.unstable.rustPlatform; };
|
||||
|
||||
|
||||
kak-lsp =
|
||||
let
|
||||
src = inputs.kak-lsp;
|
||||
|
|
Loading…
Reference in a new issue