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:
parent
cc59369933
commit
d9a0f81c7d
|
@ -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 ];
|
||||
|
|
Loading…
Reference in New Issue