lol
at v192 27 lines 781 B view raw
1{ stdenv, fetchFromGitHub, autoconf, automake110x, libtool, pkgconfig, zlib, openssl, libevent, ncurses, cmake, ruby }: 2 3stdenv.mkDerivation rec { 4 name = "tmate-${version}"; 5 version = "1.8.10"; 6 7 src = fetchFromGitHub { 8 owner = "nviennot"; 9 repo = "tmate"; 10 rev = version; 11 sha256 = "1bd9mi8fx40608zlady9dbv21kbdwc3kqrgz012m529f6cbysmzc"; 12 }; 13 14 buildInputs = [ autoconf automake110x pkgconfig libtool zlib openssl libevent ncurses cmake ruby ]; 15 16 dontUseCmakeConfigure=true; 17 18 preConfigure = "./autogen.sh"; 19 20 meta = { 21 homepage = http://tmate.io/; 22 description = "Instant Terminal Sharing"; 23 license = stdenv.lib.licenses.mit; 24 platforms = stdenv.lib.platforms.unix; 25 maintainers = with stdenv.lib.maintainers; [ DamienCassou ]; 26 }; 27}