tmate: 1.8.10 -> 2.2.0
additional changes: - tmate now depends on external libmsgpack and libssh - postPatch is no longer useful as it applied to embedded msgpack - regular automake can now be used
This commit is contained in:
parent
cc51d6bc87
commit
5db5a0daf4
@ -1,26 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoconf, automake110x, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby, libmsgpack, libssh }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "tmate-${version}";
|
name = "tmate-${version}";
|
||||||
version = "1.8.10";
|
version = "2.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nviennot";
|
owner = "nviennot";
|
||||||
repo = "tmate";
|
repo = "tmate";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1bd9mi8fx40608zlady9dbv21kbdwc3kqrgz012m529f6cbysmzc";
|
sha256 = "1w3a7na0yj1y0x24qckc7s2y9xfak5iv6vyqrd0iibn3b7dxarli";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake110x pkgconfig libtool zlib openssl libevent ncurses cmake ruby ];
|
buildInputs = [ autoconf automake pkgconfig libtool zlib openssl libevent ncurses cmake ruby libmsgpack libssh ];
|
||||||
|
|
||||||
dontUseCmakeConfigure=true;
|
dontUseCmakeConfigure=true;
|
||||||
|
|
||||||
preConfigure = "./autogen.sh";
|
preConfigure = "./autogen.sh";
|
||||||
|
|
||||||
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
||||||
substituteInPlace msgpack/bootstrap --replace glibtoolize libtoolize
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://tmate.io/;
|
homepage = http://tmate.io/;
|
||||||
description = "Instant Terminal Sharing";
|
description = "Instant Terminal Sharing";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user