summary refs log tree commit diff
path: root/pkgs/tools/misc/tmate/default.nix
blob: baadd6f30646b532609795f0b39fcc3daf42e281 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby, libmsgpack, libssh }:

stdenv.mkDerivation rec {
  name = "tmate-${version}";
  version = "2.2.0";

  src = fetchFromGitHub {
    owner  = "nviennot";
    repo   = "tmate";
    rev    = version;
    sha256 = "1w3a7na0yj1y0x24qckc7s2y9xfak5iv6vyqrd0iibn3b7dxarli";
  };

  buildInputs = [ autoconf automake pkgconfig libtool zlib openssl libevent ncurses cmake ruby libmsgpack libssh ];

  dontUseCmakeConfigure=true;

  preConfigure = "./autogen.sh";

  meta = {
    homepage = http://tmate.io/;
    description = "Instant Terminal Sharing";
    license = stdenv.lib.licenses.mit;
    platforms = stdenv.lib.platforms.unix;
    maintainers = with stdenv.lib.maintainers; [ ];
  };
}