2014-05-25 12:28:06 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45
|
2015-11-07 12:50:25 +00:00
|
|
|
, readline, makeWrapper, git, libiconv
|
2014-05-25 12:28:06 +01:00
|
|
|
}:
|
2012-08-07 23:49:12 +01:00
|
|
|
|
2012-11-17 01:13:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-29 22:57:31 +01:00
|
|
|
name = "tig-2.1.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";
|
2015-04-29 22:57:31 +01:00
|
|
|
sha256 = "0bw5wivswwh7vx897q8xc2cqgkqhdzk8gh6fnav2kf34sngigiah";
|
2012-08-07 23:49:12 +01:00
|
|
|
};
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2015-11-07 12:50:25 +00:00
|
|
|
buildInputs = [ ncurses asciidoc xmlto docbook_xsl readline git makeWrapper ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
|
2013-11-09 18:06:55 +00:00
|
|
|
|
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
|
|
|
|
2015-01-13 21:51:04 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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/
|
2015-01-13 21:51:04 +00:00
|
|
|
|
|
|
|
wrapProgram $out/bin/tig \
|
|
|
|
--prefix PATH ':' "${git}/bin"
|
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";
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = with maintainers; [ garbas bjornfor domenkozar qknight ];
|
2013-05-20 18:33:18 +01:00
|
|
|
license = licenses.gpl2;
|
2014-04-12 17:37:45 +01:00
|
|
|
platforms = platforms.unix;
|
2012-08-07 23:49:12 +01:00
|
|
|
};
|
|
|
|
}
|