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.
This commit is contained in:
Peter Simons 2012-08-20 10:34:30 +02:00
parent 7f8246c76e
commit a886d4f2ab

View File

@ -1,21 +1,17 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
let let
version = "1.3"; version = "2.0";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "bash-completion-${version}"; name = "bash-completion-${version}";
src = fetchurl { src = fetchurl {
url = "http://bash-completion.alioth.debian.org/files/bash-completion-${version}.tar.bz2"; url = "http://bash-completion.alioth.debian.org/files/bash-completion-${version}.tar.bz2";
sha256 = "8ebe30579f0f3e1a521013bcdd183193605dab353d7a244ff2582fb3a36f7bec"; sha256 = "e5a490a4301dfb228361bdca2ffca597958e47dd6056005ef9393a5852af5804";
}; };
postInstall = '' doCheck = true;
rm $out/etc/profile.d/bash_completion.sh
rmdir $out/etc/profile.d
sed -i -e "s|/etc/bash_completion|$out/etc/bash_completion|g" $out/etc/bash_completion
'';
meta = { meta = {
homepage = "http://bash-completion.alioth.debian.org/"; homepage = "http://bash-completion.alioth.debian.org/";