mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Patch rlwrap to support high-bit characters
svn path=/nixpkgs/trunk/; revision=25167
This commit is contained in:
parent
229b94b30c
commit
55afe4bc5e
@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ readline ];
|
||||
|
||||
# Be high-bit-friendly
|
||||
preBuild = ''
|
||||
sed -i src/readline.c -e "s@[*]p [<] ' '@(*p >= 0) \\&\\& (*p < ' ')@"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Readline wrapper for console programs";
|
||||
homepage = http://utopia.knoware.nl/~hlub/uck/rlwrap/;
|
||||
|
Loading…
Reference in New Issue
Block a user