2019-11-01 12:46:50 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, gflags
|
|
|
|
, libsodium
|
|
|
|
, protobuf
|
|
|
|
}:
|
2018-01-30 06:43:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "eternal-terminal";
|
2020-11-23 01:28:04 +01:00
|
|
|
version = "6.0.13";
|
2018-01-30 06:43:41 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MisterTea";
|
2019-11-01 12:46:50 +01:00
|
|
|
repo = "EternalTerminal";
|
|
|
|
rev = "et-v${version}";
|
2020-11-23 01:28:04 +01:00
|
|
|
sha256 = "0sb1hypg2276y8c2a5vivrkcxp70swddvhnd9h273if3kv6j879r";
|
2018-01-30 06:43:41 +01:00
|
|
|
};
|
|
|
|
|
2019-11-01 12:46:50 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-10-18 01:57:59 +02:00
|
|
|
buildInputs = [ gflags libsodium protobuf ];
|
2018-01-30 06:43:41 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Remote shell that automatically reconnects without interrupting the session";
|
|
|
|
license = licenses.asl20;
|
2020-03-04 21:39:16 +01:00
|
|
|
homepage = "https://mistertea.github.io/EternalTerminal/";
|
2018-10-26 18:50:51 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2019-11-01 12:46:50 +01:00
|
|
|
maintainers = with maintainers; [ dezgeg pingiun ];
|
2018-01-30 06:43:41 +01:00
|
|
|
};
|
|
|
|
}
|