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