mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #70390 from matthiasbeyer/tmate-ssh-server
tmate-ssh-server: init at 2.3.0
This commit is contained in:
commit
2b413f1556
2 changed files with 31 additions and 0 deletions
29
pkgs/servers/tmate-ssh-server/default.nix
Normal file
29
pkgs/servers/tmate-ssh-server/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkgconfig
|
||||
, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tmate-ssh-server";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tmate-io";
|
||||
repo = "tmate-ssh-server";
|
||||
rev = version;
|
||||
sha256 = "1y77mv1k4c79glj84lzlp0s1lafr1jzf60mywr5vhy6sq47q8hwd";
|
||||
};
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
|
||||
nativeBuildInputs = [ autoreconfHook cmake pkgconfig ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://tmate.io/;
|
||||
description = "tmate SSH Server";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
@ -6633,6 +6633,8 @@ in
|
|||
|
||||
tmate = callPackage ../tools/misc/tmate { };
|
||||
|
||||
tmate-ssh-server = callPackage ../servers/tmate-ssh-server { };
|
||||
|
||||
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
||||
|
||||
tmux = callPackage ../tools/misc/tmux { };
|
||||
|
|
Loading…
Reference in a new issue