mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
e21c53c211
Copy the bash completion script that comes with tig to $out/etc/bash_completion.d/. Note: to enable bash completion in NixOS, set environment.enableBashCompletion = true;
23 lines
746 B
Nix
23 lines
746 B
Nix
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tig-1.1";
|
|
src = fetchurl {
|
|
url = "http://jonas.nitro.dk/tig/releases/${name}.tar.gz";
|
|
md5 = "adeb797a8320962eeb345a615257cbac";
|
|
};
|
|
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/
|
|
'';
|
|
meta = {
|
|
homepage = "http://jonas.nitro.dk/tig/";
|
|
description = "Tig is a git repository browser that additionally can act as a pager for output from various git commands";
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|