8 stdenv.mkDerivation rec {
9 pname = "libvterm-neovim";
10 # Releases are not tagged, look at commit history to find latest release
14 url = "https://launchpad.net/libvterm/trunk/v${lib.versions.majorMinor version}/+download/libvterm-${version}.tar.gz";
15 hash = "sha256-CRVvQ90hKL00fL7r5Q2aVx0yxk4M8Y0hEZeUav9yJuA=";
18 nativeBuildInputs = [ perl libtool ];
21 "CC=${stdenv.cc.targetPrefix}cc"
22 "LIBTOOL=${libtool}/bin/libtool"
26 enableParallelBuilding = true;
29 description = "VT220/xterm/ECMA-48 terminal emulator library";
30 homepage = "http://www.leonerd.org.uk/code/libvterm/";
31 license = licenses.mit;
32 maintainers = with maintainers; [ rvolosatovs ];
33 platforms = platforms.unix;