2013-01-30 12:25:11 +01:00
|
|
|
{ stdenv, fetchgit, autoconf, automake }:
|
2011-07-22 00:02:01 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-01-30 12:25:11 +01:00
|
|
|
name = "bash-completion-2.0-95-gd08b9f2";
|
2011-07-22 00:02:01 +02:00
|
|
|
|
2013-01-30 12:25:11 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "http://anonscm.debian.org/git/bash-completion/bash-completion.git";
|
|
|
|
rev = "d08b9f233559b3dced20050ba312b08fe0de53b4";
|
|
|
|
sha256 = "0jybaib2bmpk5qd80y1l6wmfcd0b95cmf1l3hcb0ckpj0pjff0bn";
|
2011-07-22 00:02:01 +02:00
|
|
|
};
|
|
|
|
|
2013-01-30 12:25:11 +01:00
|
|
|
buildInputs = [ autoconf automake ];
|
|
|
|
|
|
|
|
preConfigure = "autoreconf -i";
|
|
|
|
|
2012-08-20 10:34:30 +02:00
|
|
|
doCheck = true;
|
2011-07-22 00:02:01 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://bash-completion.alioth.debian.org/";
|
|
|
|
description = "Programmable completion for the bash shell";
|
|
|
|
license = "GPL";
|
|
|
|
|
2013-01-30 12:25:11 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-07-22 00:02:01 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|