2013-04-10 17:39:03 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2011-07-22 00:02:01 +02:00
|
|
|
|
2013-04-10 17:39:03 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bash-completion-2.1";
|
2011-07-22 00:02:01 +02:00
|
|
|
|
2013-04-10 17:39:03 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://bash-completion.alioth.debian.org/files/${name}.tar.bz2";
|
|
|
|
sha256 = "0kxf8s5bw7y50x0ksb77d3kv0dwadixhybl818w27y6mlw26hq1b";
|
2011-07-22 00:02:01 +02:00
|
|
|
};
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|