editline: wip

This commit is contained in:
Will Dietz 2018-10-29 08:44:58 -05:00
parent f90a67e24d
commit 3d974d31fa
13 changed files with 89 additions and 4648 deletions

24
editline.nix Normal file
View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "editline-${version}";
version = "1.15.3";
src = fetchFromGitHub {
owner = "troglobit";
repo = "editline";
rev = version;
sha256 = "0dm5fgq0acpprr938idwml64nclg9l6c6avirsd8r6f40qicbgma";
};
nativeBuildInputs = [ autoreconfHook ];
dontDisableStatic = true;
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;
};
}