tig: update to 1.1
This commit is contained in:
parent
fc16fb3e28
commit
a64b34a43e
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl }:
|
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "tig-1.0";
|
name = "tig-1.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://jonas.nitro.dk/tig/releases/tig-1.0.tar.gz";
|
url = "http://jonas.nitro.dk/tig/releases/${name}.tar.gz";
|
||||||
md5 = "a2d414d1cebbc9cd4f3d545bc6f225c6";
|
md5 = "adeb797a8320962eeb345a615257cbac";
|
||||||
};
|
};
|
||||||
buildInputs = [ncurses asciidoc xmlto docbook_xsl];
|
buildInputs = [ncurses asciidoc xmlto docbook_xsl];
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -12,8 +12,9 @@ stdenv.mkDerivation {
|
|||||||
make install-doc
|
make install-doc
|
||||||
'';
|
'';
|
||||||
meta = {
|
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/";
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user