about summary refs log tree commit diff
path: root/pkgs/shells/bash-completion/default.nix
blob: a189ed29d8cb17ea044fb562fb1cbf6e5e45e87a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "bash-completion-2.1";

  src = fetchurl {
    url = "http://bash-completion.alioth.debian.org/files/${name}.tar.bz2";
    sha256 = "0kxf8s5bw7y50x0ksb77d3kv0dwadixhybl818w27y6mlw26hq1b";
  };

  doCheck = true;

  meta = {
    homepage = "http://bash-completion.alioth.debian.org/";
    description = "Programmable completion for the bash shell";
    license = "GPL";

    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.simons ];
  };
}