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