mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Merge pull request #3679 from ruediger/imp/tmux
tmux: Install bash completion script.
This commit is contained in:
commit
edaf7472c1
|
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ ncurses libevent ];
|
||||
|
||||
postInstall =
|
||||
''
|
||||
mkdir -p $out/etc/bash_completion.d
|
||||
cp -v examples/bash_completion_tmux.sh $out/etc/bash_completion.d/tmux
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://tmux.sourceforge.net/;
|
||||
description = "tmux is a terminal multiplexer";
|
||||
|
|
Loading…
Reference in a new issue