nixpkgs/pkgs/development/libraries/editline/default.nix

33 lines
940 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, fetchpatch }:
2018-03-27 22:51:02 +00:00
stdenv.mkDerivation rec {
pname = "editline";
2020-01-06 11:20:22 +00:00
version = "1.17.0";
2018-03-27 22:51:02 +00:00
src = fetchFromGitHub {
owner = "troglobit";
repo = "editline";
rev = version;
2020-01-06 11:20:22 +00:00
sha256 = "0vjm42y6zjmi6hdcng0l7wkksw7s50agbmk5dxsc3292q8mvq8v6";
2018-03-27 22:51:02 +00:00
};
patches = [
(fetchpatch {
name = "fix-for-multiline-as-one-line.patch";
url = "https://github.com/troglobit/editline/commit/ceee039cfc819c8e09eebbfca192091b0cf8df75.patch";
sha256 = "149fmfva05ghzwkd0bq1sahdbkys3qyyky28ssqb5jq7q9hw3ddm";
})
];
2018-03-27 22:51:02 +00:00
nativeBuildInputs = [ autoreconfHook ];
outputs = [ "out" "dev" "man" "doc" ];
2018-03-27 22:51:02 +00:00
meta = with lib; {
homepage = "https://troglobit.com/editline.html";
2018-03-27 22:51:02 +00:00
description = "A readline() replacement for UNIX without termcap (ncurses)";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}