editline: add patch to fix Home and End key in tmux

`nix repl` is affected by this usability issue.

(cherry picked from commit f0d26341adad9207d57edbb80736126ba2a295f2)
This commit is contained in:
oxalica 2021-05-29 15:01:43 +08:00 committed by github-actions[bot]
parent cc59369933
commit d9a0f81c7d
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
};
patches = [
(fetchpatch {
name = "fix-for-home-end-in-tmux.patch";
url = "https://github.com/troglobit/editline/commit/265c1fb6a0b99bedb157dc7c320f2c9629136518.patch";
sha256 = "sha256-9fhQH0hT8BcykGzOUoT18HBtWjjoXnePSGDJQp8GH30=";
})
];
nativeBuildInputs = [ autoreconfHook ];