summary refs log tree commit diff
path: root/pkgs/shells/bash/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/bash/default.nix')
-rw-r--r--pkgs/shells/bash/default.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix
index 684fc67ed1a2..529c7334b499 100644
--- a/pkgs/shells/bash/default.nix
+++ b/pkgs/shells/bash/default.nix
@@ -51,15 +51,7 @@ stdenv.mkDerivation rec {
   postInstall = ''
     # Add an `sh' -> `bash' symlink.
     ln -s bash "$out/bin/sh"
-
-  '' + (if interactive then "" else ''
-    # Install the completion examples.
-    ensureDir "$out/etc"
-    cp -v "examples/complete/bash_completion" "$out/etc"
-
-    ensureDir "$out/etc/bash_completion.d"
-    cp -v "examples/complete/complete.gnu-longopt" "$out/etc/bash_completion.d"
-  '');
+  '';
 
   meta = {
     homepage = http://www.gnu.org/software/bash/;