nixpkgs/pkgs/tools/misc/rlwrap/default.nix

31 lines
794 B
Nix
Raw Normal View History

2021-02-11 22:36:47 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, perl, readline }:
stdenv.mkDerivation rec {
pname = "rlwrap";
2021-02-11 22:36:47 +00:00
version = "0.45";
2021-02-11 22:36:47 +00:00
src = fetchFromGitHub {
owner = "hanslub42";
repo = "rlwrap";
rev = "v${version}";
sha256 = "1ppkjdnxrxh99g4xaiaglm5bmp24006rfahci0cn1g7zwilkjy8s";
};
2021-02-11 22:36:47 +00:00
postPatch = ''
substituteInPlace src/readline.c \
--replace "if(*p >= 0 && *p < ' ')" "if(*p >= 0 && (*p >= 0) && (*p < ' '))"
'';
2021-02-11 22:36:47 +00:00
nativeBuildInputs = [ autoreconfHook perl ];
buildInputs = [ readline ];
meta = with lib; {
description = "Readline wrapper for console programs";
homepage = "https://github.com/hanslub42/rlwrap";
2021-02-11 22:36:47 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}