2017-04-10 14:03:04 +01:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45
|
|
|
|
, readline, makeWrapper, git, libiconv, autoreconfHook, findXMLCatalogs
|
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 {
|
2017-04-10 14:03:04 +01:00
|
|
|
pname = "tig";
|
|
|
|
version = "2.2.1";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jonas";
|
|
|
|
repo = pname;
|
|
|
|
rev = name;
|
|
|
|
sha256 = "09xiwm57df0vzk8r2hx5p1hwy5f9q8frmdf96aba2ia9837zn3av";
|
2012-08-07 23:49:12 +01:00
|
|
|
};
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2017-04-10 14:03:04 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper autoreconfHook asciidoc xmlto docbook_xsl docbook_xml_dtd_45 findXMLCatalogs ];
|
|
|
|
|
|
|
|
autoreconfFlags = "-I tools -v";
|
|
|
|
|
|
|
|
buildInputs = [ ncurses readline git ]
|
2015-11-07 12:50:25 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
|
2013-11-09 18:06:55 +00:00
|
|
|
|
2017-04-10 14:03:04 +01:00
|
|
|
# those files are inherently impure, we'll handle the corresponding dependencies.
|
|
|
|
postPatch = ''
|
|
|
|
rm -f contrib/config.make-*
|
2013-11-09 18:03:16 +00:00
|
|
|
'';
|
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; {
|
2017-04-10 14:03:04 +01:00
|
|
|
homepage = "https://jonas.github.io/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
|
|
|
};
|
|
|
|
}
|