2018-05-16 06:55:26 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, perl
|
|
|
|
, libtool
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-04-22 11:54:23 +01:00
|
|
|
pname = "libvterm-neovim";
|
2019-09-16 09:21:22 +01:00
|
|
|
version = "2019-08-28";
|
2018-05-16 06:55:26 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "neovim";
|
|
|
|
repo = "libvterm";
|
2019-09-16 09:21:22 +01:00
|
|
|
rev = "1aa95e24d8f07a396aa80b7cd52f93e2b5bcca79";
|
|
|
|
sha256 = "0vjd397lqrfv4kc79i5izva4bynbymx3gllkg281fnk0b15vxfif";
|
2018-05-16 06:55:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
nativeBuildInputs = [ libtool ];
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "VT220/xterm/ECMA-48 terminal emulator library";
|
|
|
|
homepage = http://www.leonerd.org.uk/code/libvterm/;
|
|
|
|
license = licenses.mit;
|
2019-09-16 09:21:22 +01:00
|
|
|
maintainers = with maintainers; [ rvolosatovs ];
|
2018-05-16 06:55:26 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|