Fix kakoune failing to compile
... and move its definition into overlay
This commit is contained in:
parent
20c30726bb
commit
16f735f25b
2 changed files with 16 additions and 31 deletions
15
overlay.nix
15
overlay.nix
|
@ -54,6 +54,21 @@ let
|
|||
});
|
||||
|
||||
input-remapper = final.unstable.input-remapper;
|
||||
|
||||
kakoune-unwrapped =
|
||||
prev.kakoune-unwrapped.overrideAttrs (attrs: {
|
||||
version = "r${builtins.substring 0 6 inputs.kakoune.rev}";
|
||||
src = inputs.kakoune;
|
||||
patches = [
|
||||
# patches in the original package was already applied
|
||||
|
||||
# https://github.com/mawww/kakoune/pull/5108
|
||||
(final.fetchpatch {
|
||||
url = "https://github.com/mawww/kakoune/commit/64b3433905eeb33653ed617d61906ba68c686916.patch";
|
||||
hash = "sha256-XYA4GcOEuWHsnDhMI0nXbg9Myv2o1UZ8qvzavIXbkJo=";
|
||||
})
|
||||
];
|
||||
});
|
||||
};
|
||||
|
||||
overlay-libs = final: prev: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue