summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-03-20 16:26:27 +0100
committerPeter Simons <simons@cryp.to>2016-03-20 16:26:27 +0100
commitf3a068f8d647ca98f3dd988cfd65d9b886e45b63 (patch)
tree9082ef8517fcb61753ae5e11edc39a3286bd1088
parent7ed3dc6cfc9dafd2a3f632f351fc23a71a384012 (diff)
parentfa0c2c08a27b7f6eb9113ff17f38203d69c71997 (diff)
downloadnixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar.gz
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar.bz2
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar.lz
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar.xz
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.tar.zst
nixlib-f3a068f8d647ca98f3dd988cfd65d9b886e45b63.zip
Merge pull request #14078 from peterhoeg/bash_collision
bash-completion: remove collision
-rw-r--r--pkgs/shells/bash-completion/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/shells/bash-completion/default.nix b/pkgs/shells/bash-completion/default.nix
index 39f7073fcbbf..6c7051c9c7a2 100644
--- a/pkgs/shells/bash-completion/default.nix
+++ b/pkgs/shells/bash-completion/default.nix
@@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
+  # nmcli is included in the network-manager package
+  postInstall = ''
+    rm $out/share/bash-completion/completions/nmcli
+  '';
+
   meta = {
     homepage = "http://bash-completion.alioth.debian.org/";
     description = "Programmable completion for the bash shell";