2018-10-18 07:05:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, ninja, gflags, libsodium, protobuf }:
|
2018-01-30 05:43:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "eternal-terminal-${version}";
|
2018-10-25 18:10:22 +01:00
|
|
|
version = "5.1.7";
|
2018-01-30 05:43:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MisterTea";
|
|
|
|
repo = "EternalTCP";
|
|
|
|
rev = "refs/tags/et-v${version}";
|
2018-10-25 18:10:22 +01:00
|
|
|
sha256 = "17ndpkpyh8hwr6v7ac6029sja95nhn9c1g8r93g20rp0vz3r6lpa";
|
2018-01-30 05:43:41 +00:00
|
|
|
};
|
|
|
|
|
2018-10-18 07:05:21 +01:00
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
2018-10-18 00:57:59 +01:00
|
|
|
buildInputs = [ gflags libsodium protobuf ];
|
2018-01-30 05:43:41 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Remote shell that automatically reconnects without interrupting the session";
|
|
|
|
license = licenses.asl20;
|
|
|
|
homepage = https://mistertea.github.io/EternalTCP/;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
};
|
|
|
|
}
|