termite: v8 -> v9

This commit is contained in:
koral 2014-11-04 23:50:23 +01:00
parent 8e02bde1a8
commit e0b75ea5e7

View File

@ -2,12 +2,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "termite-${version}"; name = "termite-${version}";
version = "v8"; version = "9";
src = fetchgit { src = fetchgit {
url = "https://github.com/thestinger/termite"; url = "https://github.com/thestinger/termite";
rev = "7f03ded7308ad0e26b72b150080e4f3e70401815"; rev = "refs/tags/v${version}";
sha256 = "1yj4jvjwv73a02p8a0yip8q39znlhfc9zdr19zm1zik2k4h62c2l"; sha256 = "0bnzfjk5yl5i96v5jnlvrz0d1jcp5lal6ppl7y8wx13166i6sdnh";
}; };
makeFlags = "VERSION=v${version}"; makeFlags = "VERSION=v${version}";
@ -16,11 +16,11 @@ stdenv.mkDerivation rec {
installFlags = "PREFIX=$(out)"; installFlags = "PREFIX=$(out)";
meta = { meta = with stdenv.lib; {
description = "A simple VTE-based terminal"; description = "A simple VTE-based terminal";
license = stdenv.lib.licenses.lgpl2Plus; license = licenses.lgpl2Plus;
homepage = https://github.com/thestinger/termite/; homepage = https://github.com/thestinger/termite/;
maintainers = with stdenv.lib.maintainers; [koral]; maintainers = [ maintainers.koral ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }