tig: update to 1.1

This commit is contained in:
Rok Garbas 2012-11-17 02:13:25 +01:00
parent fc16fb3e28
commit a64b34a43e

View File

@ -1,10 +1,10 @@
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl }:
stdenv.mkDerivation {
name = "tig-1.0";
stdenv.mkDerivation rec {
name = "tig-1.1";
src = fetchurl {
url = "http://jonas.nitro.dk/tig/releases/tig-1.0.tar.gz";
md5 = "a2d414d1cebbc9cd4f3d545bc6f225c6";
url = "http://jonas.nitro.dk/tig/releases/${name}.tar.gz";
md5 = "adeb797a8320962eeb345a615257cbac";
};
buildInputs = [ncurses asciidoc xmlto docbook_xsl];
installPhase = ''
@ -12,8 +12,9 @@ stdenv.mkDerivation {
make install-doc
'';
meta = {
description = "Tig is a git repository browser that additionally can act as a pager for output from various git commands";
homepage = "http://jonas.nitro.dk/tig/";
license = "GPLv2";
description = "Tig is a git repository browser that additionally can act as a pager for output from various git commands";
maintainers = [ stdenv.lib.maintainers.garbas ];
license = pkgs.lib.licenses.gpl2;
};
}