2013-11-09 18:03:16 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45 }:
|
2012-08-07 23:49:12 +01:00
|
|
|
|
2012-11-17 01:13:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-09 18:03:16 +00:00
|
|
|
name = "tig-1.2.1";
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2012-08-07 23:49:12 +01:00
|
|
|
src = fetchurl {
|
2012-11-17 01:13:25 +00:00
|
|
|
url = "http://jonas.nitro.dk/tig/releases/${name}.tar.gz";
|
2013-11-09 18:03:16 +00:00
|
|
|
sha256 = "0i19lc6dd3vdpkdd8q07xii2c4mcpiwmg55av81jyhx0y82x425p";
|
2012-08-07 23:49:12 +01:00
|
|
|
};
|
2013-11-09 18:06:55 +00:00
|
|
|
|
|
|
|
buildInputs = [ ncurses asciidoc xmlto docbook_xsl ];
|
|
|
|
|
2013-11-09 18:03:16 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export XML_CATALOG_FILES='${docbook_xsl}/xml/xsl/docbook/catalog.xml ${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml'
|
|
|
|
'';
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2012-08-07 23:49:12 +01:00
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
make install-doc
|
2013-04-01 17:37:52 +01:00
|
|
|
mkdir -p $out/etc/bash_completion.d/
|
|
|
|
cp contrib/tig-completion.bash $out/etc/bash_completion.d/
|
2012-08-07 23:49:12 +01:00
|
|
|
'';
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2013-05-20 18:33:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-08-07 23:49:12 +01:00
|
|
|
homepage = "http://jonas.nitro.dk/tig/";
|
2013-11-09 18:06:55 +00:00
|
|
|
description = "Text-mode interface for git";
|
|
|
|
maintainers = with maintainers; [ garbas bjornfor iElectric ];
|
2013-05-20 18:33:18 +01:00
|
|
|
license = licenses.gpl2;
|
2013-06-18 21:42:02 +01:00
|
|
|
platforms = platforms.linux;
|
2012-08-07 23:49:12 +01:00
|
|
|
};
|
|
|
|
}
|