biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / hostmux / default.nix
blob27e714a5e7f7df2826e718a02ec2ff9aff1efa72
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , installShellFiles
5 , openssh
6 , tmux
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "hostmux";
11   version = "1.4.0";
13   src = fetchFromGitHub {
14     owner = "hukl";
15     repo = "hostmux";
16     rev = finalAttrs.version;
17     hash = "sha256-odN7QFsU3MsWW8VabVjZH+8+AUFOUio8eF9ORv9iPEA=";
18   };
20   nativeBuildInputs = [
21     installShellFiles
22   ];
24   buildInputs = [
25     openssh
26     tmux
27   ];
29   postPatch = ''
30     substituteInPlace hostmux \
31       --replace "SSH_CMD=ssh" "SSH_CMD=${openssh}/bin/ssh" \
32       --replace "tmux -2" "${tmux}/bin/tmux -2" \
33       --replace "tmux s" "${tmux}/bin/tmux s"
34   '';
36   installPhase = ''
37     runHook preInstall
39     install -Dm755 hostmux $out/bin/hostmux
40     installManPage man/hostmux.1
41     installShellCompletion --zsh zsh-completion/_hostmux
43     runHook postInstall
44   '';
46   meta = {
47     description = "Small wrapper script for tmux to easily connect to a series of hosts via ssh and open a split pane for each of the hosts";
48     homepage = "https://github.com/hukl/hostmux";
49     license = lib.licenses.mit;
50     mainProgram = "hostmux";
51     maintainers = with lib.maintainers; [ fernsehmuell ];
52     platforms = lib.platforms.unix;
53   };