f3282c8d1e
* treewide: remove unused variables * making ofborg happy
25 lines
662 B
Nix
25 lines
662 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "editline-${version}";
|
|
version = "1.16.1";
|
|
src = fetchFromGitHub {
|
|
owner = "troglobit";
|
|
repo = "editline";
|
|
rev = version;
|
|
sha256 = "192valxbvkxh47dszrnahv7xiccarjw9y84g4zaw5y0lxfc54dir";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
|
|
|
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;
|
|
};
|
|
}
|