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

let
  version = "1.3";
in
stdenv.mkDerivation {
  name = "bash-completion-${version}";

  src = fetchurl {
    url = "http://bash-completion.alioth.debian.org/files/bash-completion-${version}.tar.bz2";
    sha256 = "8ebe30579f0f3e1a521013bcdd183193605dab353d7a244ff2582fb3a36f7bec";
  };

  postInstall = ''
    rm $out/etc/profile.d/bash_completion.sh
    rmdir $out/etc/profile.d
  '';

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

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