2010-07-29 22:55:16 +04:00
|
|
|
{ stdenv, fetchurl, readline }:
|
2008-01-24 02:39:06 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "rlwrap";
|
2017-11-04 11:29:49 +03:00
|
|
|
version = "0.43";
|
2010-07-29 22:55:16 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "https://github.com/hanslub42/rlwrap/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2017-11-04 11:29:49 +03:00
|
|
|
sha256 = "0bzb7ylk2770iv59v2d0gypb21y2xn87m299s9rqm6rdi2vx11lf";
|
2010-07-29 22:55:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ readline ];
|
|
|
|
|
2010-12-17 13:56:35 +03:00
|
|
|
# Be high-bit-friendly
|
|
|
|
preBuild = ''
|
|
|
|
sed -i src/readline.c -e "s@[*]p [<] ' '@(*p >= 0) \\&\\& (*p < ' ')@"
|
|
|
|
'';
|
|
|
|
|
2010-07-29 22:55:16 +04:00
|
|
|
meta = {
|
|
|
|
description = "Readline wrapper for console programs";
|
2017-11-04 11:29:49 +03:00
|
|
|
homepage = https://github.com/hanslub42/rlwrap;
|
2014-09-21 22:08:45 +04:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2015-03-20 18:52:02 +03:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-09-21 22:08:45 +04:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2010-07-29 22:55:16 +04:00
|
|
|
};
|
2008-01-24 02:39:06 +03:00
|
|
|
}
|