Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
tmux,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "tmux-cssh";
|
|
version = "unstable-2015-10-15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dennishafemann";
|
|
repo = "tmux-cssh";
|
|
rev = "21750733c5b6fa2fe23b9e50ce69d8564f2f742a";
|
|
hash = "sha256-Rz4n87aYZLkF0TQNl5F80gJwXHYWEes67EwkUh9ptSw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp tmux-cssh $out/bin/tmux-cssh
|
|
wrapProgram $out/bin/tmux-cssh --suffix PATH : ${tmux}/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dennishafemann/tmux-cssh";
|
|
description = "SSH to multiple hosts at the same time using tmux";
|
|
|
|
longDescription = ''
|
|
tmux is a terminal multiplexer, like e.g. screen, which gives you a
|
|
possibility to use multiple virtual terminal session within one real
|
|
terminal session. tmux-cssh (tmux-cluster-ssh) sets a comfortable and
|
|
easy to use functionality, clustering and synchronizing virtual
|
|
tmux-sessions, on top of tmux. No need for a x-server or x-forwarding.
|
|
tmux-cssh works just with tmux and in an low-level terminal-environment,
|
|
like most server do.
|
|
'';
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
|
mainProgram = "tmux-cssh";
|
|
};
|
|
}
|