nixpkgs/pkgs/tools/networking/eternal-terminal/default.nix

31 lines
749 B
Nix
Raw Normal View History

2019-11-01 11:46:50 +00:00
{ stdenv
, fetchFromGitHub
, cmake
, gflags
, libsodium
, protobuf
}:
2018-01-30 05:43:41 +00:00
stdenv.mkDerivation rec {
pname = "eternal-terminal";
2020-08-13 15:59:26 +00:00
version = "6.0.11";
2018-01-30 05:43:41 +00:00
src = fetchFromGitHub {
owner = "MisterTea";
2019-11-01 11:46:50 +00:00
repo = "EternalTerminal";
rev = "et-v${version}";
2020-08-13 15:59:26 +00:00
sha256 = "0yjf639ldfaxrw4pbg9avdkhhmcpnx58j3x70zskvgkajny8yqqr";
2018-01-30 05:43:41 +00:00
};
2019-11-01 11:46:50 +00:00
nativeBuildInputs = [ cmake ];
2018-10-17 23:57:59 +00: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;
2020-03-04 20:39:16 +00:00
homepage = "https://mistertea.github.io/EternalTerminal/";
2018-10-26 16:50:51 +00:00
platforms = platforms.linux ++ platforms.darwin;
2019-11-01 11:46:50 +00:00
maintainers = with maintainers; [ dezgeg pingiun ];
2018-01-30 05:43:41 +00:00
};
}