Merge pull request #48648 from qolii/et__4_1_2__5_1_6

eternal-terminal: 4.1.2 -> 5.1.6.
This commit is contained in:
Jan Tojnar 2018-10-18 12:17:43 +02:00 committed by GitHub
commit 42bf580f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,18 @@
{ stdenv, fetchFromGitHub, cmake, gflags, glog, libsodium, protobuf }:
{ stdenv, fetchFromGitHub, cmake, ninja, gflags, libsodium, protobuf }:
stdenv.mkDerivation rec {
name = "eternal-terminal-${version}";
version = "4.1.2";
version = "5.1.6";
src = fetchFromGitHub {
owner = "MisterTea";
repo = "EternalTCP";
rev = "refs/tags/et-v${version}";
sha256 = "1zy30ccsddgs2wqwxphnx5i00j4gf69lr68mzg9x6imqfz0sbcjz";
sha256 = "0df573c5hi3hxa0d3m02zf2iyh841540dklj9lmp6faik8cp39jz";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ gflags glog libsodium protobuf ];
enableParallelBuilding = true;
nativeBuildInputs = [ cmake ninja ];
buildInputs = [ gflags libsodium protobuf ];
meta = with stdenv.lib; {
description = "Remote shell that automatically reconnects without interrupting the session";