2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2018-03-27 23:51:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "editline";
|
2019-06-09 10:41:34 +01:00
|
|
|
version = "1.16.1";
|
2018-03-27 23:51:02 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "troglobit";
|
|
|
|
repo = "editline";
|
|
|
|
rev = version;
|
2019-06-09 10:41:34 +01:00
|
|
|
sha256 = "192valxbvkxh47dszrnahv7xiccarjw9y84g4zaw5y0lxfc54dir";
|
2018-03-27 23:51:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2018-10-29 11:49:13 +00:00
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2018-03-27 23:51:02 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://troglobit.com/editline.html;
|
|
|
|
description = "A readline() replacement for UNIX without termcap (ncurses)";
|
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|