bash-completion: update to current git HEAD at 2.0-95-gd08b9f2

The 2.0 release is 7+ months old, and there has been lots of activity since.
This commit is contained in:
Peter Simons 2013-01-30 12:25:11 +01:00
parent e816889ccc
commit 07fb82aef3

View File

@ -1,16 +1,18 @@
{ stdenv, fetchurl }: { stdenv, fetchgit, autoconf, automake }:
let
version = "2.0";
in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "bash-completion-${version}"; name = "bash-completion-2.0-95-gd08b9f2";
src = fetchurl { src = fetchgit {
url = "http://bash-completion.alioth.debian.org/files/bash-completion-${version}.tar.bz2"; url = "http://anonscm.debian.org/git/bash-completion/bash-completion.git";
sha256 = "e5a490a4301dfb228361bdca2ffca597958e47dd6056005ef9393a5852af5804"; rev = "d08b9f233559b3dced20050ba312b08fe0de53b4";
sha256 = "0jybaib2bmpk5qd80y1l6wmfcd0b95cmf1l3hcb0ckpj0pjff0bn";
}; };
buildInputs = [ autoconf automake ];
preConfigure = "autoreconf -i";
doCheck = true; doCheck = true;
meta = { meta = {
@ -18,6 +20,7 @@ stdenv.mkDerivation {
description = "Programmable completion for the bash shell"; description = "Programmable completion for the bash shell";
license = "GPL"; license = "GPL";
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.simons ]; maintainers = [ stdenv.lib.maintainers.simons ];
}; };
} }