2017-06-22 16:10:14 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkgconfig
|
2018-08-17 23:53:33 +00:00
|
|
|
, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
|
2015-09-06 05:03:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tmate";
|
2019-11-29 20:16:53 +00:00
|
|
|
version = "2.4.0";
|
2015-09-06 05:03:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-03-01 09:47:43 +00:00
|
|
|
owner = "tmate-io";
|
2015-09-06 05:03:02 +00:00
|
|
|
repo = "tmate";
|
|
|
|
rev = version;
|
2019-11-29 20:16:53 +00:00
|
|
|
sha256 = "0x5c31yq7ansmiy20a0qf59wagba9v3pq97mlkxrqxn4n1gcc6vi";
|
2015-09-06 05:03:02 +00:00
|
|
|
};
|
|
|
|
|
2017-06-22 16:10:14 +00:00
|
|
|
dontUseCmakeConfigure = true;
|
2015-09-06 05:03:02 +00:00
|
|
|
|
2018-08-17 23:53:33 +00:00
|
|
|
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
|
2017-06-22 16:10:14 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook cmake pkgconfig ];
|
|
|
|
enableParallelBuilding = true;
|
2015-09-06 05:03:02 +00:00
|
|
|
|
2017-06-22 16:10:14 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://tmate.io/";
|
2015-09-06 05:03:02 +00:00
|
|
|
description = "Instant Terminal Sharing";
|
2017-06-22 16:10:14 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ ];
|
2015-09-06 05:03:02 +00:00
|
|
|
};
|
|
|
|
}
|