nixpkgs/pkgs/tools/misc/tmate/default.nix

28 lines
766 B
Nix
Raw Normal View History

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