mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
tmate: init at 1.8.10
This commit is contained in:
parent
bd84ebaa1e
commit
1b55859d2a
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 ];
|
||||
};
|
||||
}
|
@ -3194,6 +3194,8 @@ let
|
||||
|
||||
tlsdate = callPackage ../tools/networking/tlsdate { };
|
||||
|
||||
tmate = callPackage ../tools/misc/tmate { };
|
||||
|
||||
tmpwatch = callPackage ../tools/misc/tmpwatch { };
|
||||
|
||||
tmux = callPackage ../tools/misc/tmux { };
|
||||
|
Loading…
Reference in New Issue
Block a user