forked from mirrors/nixpkgs
tmux: Install bash completion script.
This commit is contained in:
parent
c37057240f
commit
775b4a39e6
|
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ ncurses libevent ];
|
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 = {
|
meta = {
|
||||||
homepage = http://tmux.sourceforge.net/;
|
homepage = http://tmux.sourceforge.net/;
|
||||||
description = "tmux is a terminal multiplexer";
|
description = "tmux is a terminal multiplexer";
|
||||||
|
|
Loading…
Reference in a new issue