summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2016-01-09 09:45:25 +0100
committerDamien Cassou <damien@cassou.me>2016-01-09 09:45:25 +0100
commit71f4e7f694c8831ff9b3af976083fff664833179 (patch)
tree92cab72398653b083ad1f6a6c41378521fb063ff /pkgs
parent542906a29be210ba707edcbb479900b79993fa2a (diff)
parent5db5a0daf4ff143460b65aca8ce32287707a2ece (diff)
downloadnixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar.gz
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar.bz2
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar.lz
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar.xz
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.tar.zst
nixlib-71f4e7f694c8831ff9b3af976083fff664833179.zip
Merge pull request #12256 from sigma/version/tmate
tmate: 1.8.10 -> 2.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/tmate/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/tools/misc/tmate/default.nix b/pkgs/tools/misc/tmate/default.nix
index 881c9f1c54f8..b50091657995 100644
--- a/pkgs/tools/misc/tmate/default.nix
+++ b/pkgs/tools/misc/tmate/default.nix
@@ -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 {
   name = "tmate-${version}";
-  version = "1.8.10";
+  version = "2.2.0";
 
   src = fetchFromGitHub {
     owner  = "nviennot";
     repo   = "tmate";
     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;
 
   preConfigure = "./autogen.sh";
 
-  postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
-    substituteInPlace msgpack/bootstrap --replace glibtoolize libtoolize
-  '';
-
   meta = {
     homepage = http://tmate.io/;
     description = "Instant Terminal Sharing";