2017-06-22 19:10:14 +03:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkgconfig
|
2018-08-18 02:53:33 +03:00
|
|
|
, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
|
2015-09-06 08:03:02 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "tmate";
|
2019-10-24 19:49:35 +03:00
|
|
|
version = "2.3.1";
|
2015-09-06 08:03:02 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-03-01 12:47:43 +03:00
|
|
|
owner = "tmate-io";
|
2015-09-06 08:03:02 +03:00
|
|
|
repo = "tmate";
|
|
|
|
rev = version;
|
2019-10-24 19:49:35 +03:00
|
|
|
sha256 = "183rvga8nvh9r7p8104vwcmzp3vrfdhnx73vh06m2fgdq9i5rz3l";
|
2015-09-06 08:03:02 +03:00
|
|
|
};
|
|
|
|
|
2017-06-22 19:10:14 +03:00
|
|
|
dontUseCmakeConfigure = true;
|
2015-09-06 08:03:02 +03:00
|
|
|
|
2018-08-18 02:53:33 +03:00
|
|
|
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
|
2017-06-22 19:10:14 +03:00
|
|
|
nativeBuildInputs = [ autoreconfHook cmake pkgconfig ];
|
|
|
|
enableParallelBuilding = true;
|
2015-09-06 08:03:02 +03:00
|
|
|
|
2017-06-22 19:10:14 +03:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 22:42:46 +03:00
|
|
|
homepage = https://tmate.io/;
|
2015-09-06 08:03:02 +03:00
|
|
|
description = "Instant Terminal Sharing";
|
2017-06-22 19:10:14 +03:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ ];
|
2015-09-06 08:03:02 +03:00
|
|
|
};
|
|
|
|
}
|