Merge pull request #9673 from DamienCassou/new-tmate
This commit is contained in:
commit
c28ee050ac
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/tmate/default.nix
Normal file
27
pkgs/tools/misc/tmate/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, fetchFromGitHub, autoconf, automake110x, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tmate-${version}";
|
||||||
|
version = "1.8.10";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nviennot";
|
||||||
|
repo = "tmate";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1bd9mi8fx40608zlady9dbv21kbdwc3kqrgz012m529f6cbysmzc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoconf automake110x pkgconfig libtool zlib openssl libevent ncurses cmake ruby ];
|
||||||
|
|
||||||
|
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; [ DamienCassou ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3202,6 +3202,8 @@ let
|
||||||
|
|
||||||
tlsdate = callPackage ../tools/networking/tlsdate { };
|
tlsdate = callPackage ../tools/networking/tlsdate { };
|
||||||
|
|
||||||
|
tmate = callPackage ../tools/misc/tmate { };
|
||||||
|
|
||||||
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
||||||
|
|
||||||
tmux = callPackage ../tools/misc/tmux { };
|
tmux = callPackage ../tools/misc/tmux { };
|
||||||
|
|
Loading…
Reference in a new issue