24 lines
652 B
Nix
24 lines
652 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "editline";
|
|
version = "1.17.0";
|
|
src = fetchFromGitHub {
|
|
owner = "troglobit";
|
|
repo = "editline";
|
|
rev = version;
|
|
sha256 = "0vjm42y6zjmi6hdcng0l7wkksw7s50agbmk5dxsc3292q8mvq8v6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|