libvterm-neovim 0.3 -> 0.3.1 https://repology.org/metapackage/libvterm-neovim/versions attrpath: libvterm-neovim Checking auto update branch... No auto update branch exists Old version 0.3" not present in staging derivation file with contents: { lib , stdenv , fetchurl , perl , libtool }: stdenv.mkDerivation rec { pname = "libvterm-neovim"; # Releases are not tagged, look at commit history to find latest release version = "0.3.1"; src = fetchurl { url = "https://www.leonerd.org.uk/code/libvterm/libvterm-${version}.tar.gz"; sha256 = "sha256-JaitnBVIU2jf0Kip3KGuyP6lwn2j+nTsUY1dN4fww5c="; }; nativeBuildInputs = [ perl libtool ]; makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "LIBTOOL=${libtool}/bin/libtool" "PREFIX=$(out)" ]; enableParallelBuilding = true; meta = with lib; { description = "VT220/xterm/ECMA-48 terminal emulator library"; homepage = "http://www.leonerd.org.uk/code/libvterm/"; license = licenses.mit; maintainers = with maintainers; [ rvolosatovs ]; platforms = platforms.unix; }; }