mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
hostmux: init at 1.4.0
This commit is contained in:
parent
c78c03f6be
commit
1050eee2a2
2 changed files with 56 additions and 0 deletions
54
pkgs/tools/misc/hostmux/default.nix
Normal file
54
pkgs/tools/misc/hostmux/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, openssh
|
||||
, tmux
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "hostmux";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hukl";
|
||||
repo = "hostmux";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-odN7QFsU3MsWW8VabVjZH+8+AUFOUio8eF9ORv9iPEA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssh
|
||||
tmux
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace hostmux \
|
||||
--replace "SSH_CMD=ssh" "SSH_CMD=${openssh}/bin/ssh" \
|
||||
--replace "tmux -2" "${tmux}/bin/tmux -2" \
|
||||
--replace "tmux s" "${tmux}/bin/tmux s"
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm755 hostmux $out/bin/hostmux
|
||||
installManPage man/hostmux.1
|
||||
installShellCompletion --zsh zsh-completion/_hostmux
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
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";
|
||||
homepage = "https://github.com/hukl/hostmux";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "hostmux";
|
||||
maintainers = with lib.maintainers; [ fernsehmuell ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
|
@ -1790,6 +1790,8 @@ with pkgs;
|
|||
|
||||
hexdiff = callPackage ../tools/misc/hexdiff { };
|
||||
|
||||
hostmux = callPackage ../tools/misc/hostmux { };
|
||||
|
||||
httm = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/httm { };
|
||||
|
||||
inherit (callPackage ../tools/networking/ivpn/default.nix {}) ivpn ivpn-service;
|
||||
|
|
Loading…
Reference in a new issue