3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/tmate/default.nix

28 lines
797 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby, libmsgpack, libssh }:
2015-09-06 06:03:02 +01:00
stdenv.mkDerivation rec {
name = "tmate-${version}";
version = "2.2.0";
2015-09-06 06:03:02 +01:00
src = fetchFromGitHub {
owner = "nviennot";
repo = "tmate";
rev = version;
sha256 = "1w3a7na0yj1y0x24qckc7s2y9xfak5iv6vyqrd0iibn3b7dxarli";
2015-09-06 06:03:02 +01:00
};
buildInputs = [ autoconf automake pkgconfig libtool zlib openssl libevent ncurses cmake ruby libmsgpack libssh ];
2015-09-06 06:03:02 +01:00
dontUseCmakeConfigure=true;
preConfigure = "./autogen.sh";
meta = {
homepage = http://tmate.io/;
description = "Instant Terminal Sharing";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
2017-01-31 10:00:14 +00:00
maintainers = with stdenv.lib.maintainers; [ ];
2015-09-06 06:03:02 +01:00
};
}