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

31 lines
746 B
Nix
Raw Normal View History

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 {
pname = "eternal-terminal";
2020-02-19 11:25:51 -08:00
version = "6.0.6";
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-02-19 11:25:51 -08:00
sha256 = "0vhhiccyvp9pjdmmscwdwcynxfwd2kgv418z90blnir0yfkvsryq";
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;
2018-10-31 10:59:46 -07: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
};
}