1 { lib, stdenv, fetchFromGitHub, makeWrapper, tmux }:
5 version = "unstable-2015-10-15";
7 src = fetchFromGitHub {
8 owner = "dennishafemann";
10 rev = "21750733c5b6fa2fe23b9e50ce69d8564f2f742a";
11 sha256 = "473e27f3b69864b905d1340d97917cd202705c761611eb3aec4c24521f69b52c";
14 nativeBuildInputs = [ makeWrapper ];
18 cp tmux-cssh $out/bin/tmux-cssh
19 wrapProgram $out/bin/tmux-cssh --suffix PATH : ${tmux}/bin
23 homepage = "https://github.com/dennishafemann/tmux-cssh";
24 description = "SSH to multiple hosts at the same time using tmux";
28 tmux is a terminal multiplexer, like e.g. screen, which gives you a
29 possibility to use multiple virtual terminal session within one real
30 terminal session. tmux-cssh (tmux-cluster-ssh) sets a comfortable and
31 easy to use functionality, clustering and synchronizing virtual
32 tmux-sessions, on top of tmux. No need for a x-server or x-forwarding.
33 tmux-cssh works just with tmux and in an low-level terminal-environment,
37 license = lib.licenses.asl20;
39 platforms = lib.platforms.unix;
40 maintainers = with lib.maintainers; [ zimbatm ];