bash-completion: automatically source any completion files that the user might have installed in ~/.nix-profile/etc/bash_completion.d

This commit is contained in:
Peter Simons 2012-08-20 16:36:20 +02:00
parent e91a4fb1e4
commit 970a326ebb

View File

@ -11,6 +11,11 @@ stdenv.mkDerivation {
sha256 = "e5a490a4301dfb228361bdca2ffca597958e47dd6056005ef9393a5852af5804";
};
postInstall = ''
sed -i "$out/share/bash-completion/bash_completion" \
-e 's|: .{BASH_COMPLETION_COMPAT_DIR:=.*}|BASH_COMPLETION_COMPAT_DIR="$HOME/.nix-profile/etc/bash_completion.d"|'
'';
doCheck = true;
meta = {