2017-04-10 06:03:04 -07:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45
|
2017-05-07 14:22:29 -07:00
|
|
|
, readline, makeWrapper, git, libiconv, autoreconfHook, findXMLCatalogs, pkgconfig
|
2014-05-25 04:28:06 -07:00
|
|
|
}:
|
2012-08-07 15:49:12 -07:00
|
|
|
|
2012-11-16 17:13:25 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2017-04-10 06:03:04 -07:00
|
|
|
pname = "tig";
|
2017-12-26 02:27:01 -08:00
|
|
|
version = "2.3.2";
|
2017-04-10 06:03:04 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jonas";
|
|
|
|
repo = pname;
|
|
|
|
rev = name;
|
2017-12-26 02:27:01 -08:00
|
|
|
sha256 = "14cdlrdxbl8vzqw86fm3wyaixh607z47shc4dwd6rd9vj05w0m97";
|
2012-08-07 15:49:12 -07:00
|
|
|
};
|
2013-11-09 10:06:55 -08:00
|
|
|
|
2017-05-07 14:22:29 -07:00
|
|
|
nativeBuildInputs = [ makeWrapper autoreconfHook asciidoc xmlto docbook_xsl docbook_xml_dtd_45 findXMLCatalogs pkgconfig ];
|
2017-04-10 06:03:04 -07:00
|
|
|
|
|
|
|
autoreconfFlags = "-I tools -v";
|
|
|
|
|
|
|
|
buildInputs = [ ncurses readline git ]
|
2015-11-07 04:50:25 -08:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
|
2013-11-09 10:06:55 -08:00
|
|
|
|
2017-04-10 06:03:04 -07:00
|
|
|
# those files are inherently impure, we'll handle the corresponding dependencies.
|
|
|
|
postPatch = ''
|
|
|
|
rm -f contrib/config.make-*
|
2013-11-09 10:03:16 -08:00
|
|
|
'';
|
2013-11-09 10:06:55 -08:00
|
|
|
|
2015-01-13 13:51:04 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-08-07 15:49:12 -07:00
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
make install-doc
|
2013-04-01 09:37:52 -07:00
|
|
|
mkdir -p $out/etc/bash_completion.d/
|
|
|
|
cp contrib/tig-completion.bash $out/etc/bash_completion.d/
|
2015-01-13 13:51:04 -08:00
|
|
|
|
|
|
|
wrapProgram $out/bin/tig \
|
|
|
|
--prefix PATH ':' "${git}/bin"
|
2012-08-07 15:49:12 -07:00
|
|
|
'';
|
2013-11-09 10:06:55 -08:00
|
|
|
|
2013-05-20 10:33:18 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://jonas.github.io/tig/;
|
2013-11-09 10:06:55 -08:00
|
|
|
description = "Text-mode interface for git";
|
2016-05-17 04:57:28 -07:00
|
|
|
maintainers = with maintainers; [ garbas bjornfor domenkozar qknight ];
|
2013-05-20 10:33:18 -07:00
|
|
|
license = licenses.gpl2;
|
2014-04-12 09:37:45 -07:00
|
|
|
platforms = platforms.unix;
|
2012-08-07 15:49:12 -07:00
|
|
|
};
|
|
|
|
}
|