nixpkgs/pkgs/shells/bash-completion/default.nix
Peter Simons a886d4f2ab bash-completion: update to version 2.0
Please note that this update changes the directory structure quite a bit. In
particular, the file "/etc/bash_completion" no longer exists, which means that
shell code which relies on that path must be updated. I'll commit appropriate
changes for NixOS in a moment.
2012-08-20 10:34:56 +02:00

24 lines
548 B
Nix

{ stdenv, fetchurl }:
let
version = "2.0";
in
stdenv.mkDerivation {
name = "bash-completion-${version}";
src = fetchurl {
url = "http://bash-completion.alioth.debian.org/files/bash-completion-${version}.tar.bz2";
sha256 = "e5a490a4301dfb228361bdca2ffca597958e47dd6056005ef9393a5852af5804";
};
doCheck = true;
meta = {
homepage = "http://bash-completion.alioth.debian.org/";
description = "Programmable completion for the bash shell";
license = "GPL";
maintainers = [ stdenv.lib.maintainers.simons ];
};
}