3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-and-tools/tig/default.nix

24 lines
817 B
Nix
Raw Normal View History

2012-08-07 23:49:12 +01:00
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl }:
2012-11-17 01:13:25 +00:00
stdenv.mkDerivation rec {
name = "tig-1.1";
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";
md5 = "adeb797a8320962eeb345a615257cbac";
2012-08-07 23:49:12 +01:00
};
buildInputs = [ncurses asciidoc xmlto docbook_xsl];
installPhase = ''
make install
make install-doc
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
'';
meta = with stdenv.lib; {
2012-08-07 23:49:12 +01:00
homepage = "http://jonas.nitro.dk/tig/";
2012-11-17 01:13:25 +00:00
description = "Tig is a git repository browser that additionally can act as a pager for output from various git commands";
2013-06-18 21:42:02 +01:00
maintainers = [ maintainers.garbas maintainers.bjornfor maintainers.iElectric ];
license = licenses.gpl2;
2013-06-18 21:42:02 +01:00
platforms = platforms.linux;
2012-08-07 23:49:12 +01:00
};
}