python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / tmux-cssh / default.nix
blobc69853635e9098e9ac598008398ca7f473767e1a
1 { lib, stdenv, fetchFromGitHub, makeWrapper, tmux }:
3 stdenv.mkDerivation {
4   pname = "tmux-cssh";
5   version = "unstable-2015-10-15";
7   src = fetchFromGitHub {
8     owner = "dennishafemann";
9     repo = "tmux-cssh";
10     rev = "21750733c5b6fa2fe23b9e50ce69d8564f2f742a";
11     sha256 = "473e27f3b69864b905d1340d97917cd202705c761611eb3aec4c24521f69b52c";
12   };
14   nativeBuildInputs = [ makeWrapper ];
16   installPhase = ''
17     mkdir -p $out/bin
18     cp tmux-cssh $out/bin/tmux-cssh
19     wrapProgram $out/bin/tmux-cssh --suffix PATH : ${tmux}/bin
20   '';
22   meta = {
23     homepage = "https://github.com/dennishafemann/tmux-cssh";
24     description = "SSH to multiple hosts at the same time using tmux";
26     longDescription =
27       ''
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,
34       like most server do.
35       '';
37     license = lib.licenses.asl20;
39     platforms = lib.platforms.unix;
40     maintainers = with lib.maintainers; [ zimbatm ];
41   };