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