Temporarily patch rbw

This commit is contained in:
Natsu Kagami 2024-07-08 14:16:34 +02:00
parent 3b9f2d3dec
commit 527c6ba4e5
Signed by: nki
GPG key ID: 55A032EB38B49ADB

View file

@ -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;