Skip to content

Commit ab5357b

Browse files
committedJan 30, 2018
eternal-terminal: init at 4.1.2
1 parent 41013a5 commit ab5357b

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{ stdenv, fetchFromGitHub, cmake, gflags, glog, libsodium, protobuf }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "eternal-terminal-${version}";
5+
version = "4.1.2";
6+
7+
src = fetchFromGitHub {
8+
owner = "MisterTea";
9+
repo = "EternalTCP";
10+
rev = "refs/tags/et-v${version}";
11+
sha256 = "1zy30ccsddgs2wqwxphnx5i00j4gf69lr68mzg9x6imqfz0sbcjz";
12+
};
13+
14+
nativeBuildInputs = [ cmake ];
15+
buildInputs = [ gflags glog libsodium protobuf ];
16+
17+
enableParallelBuilding = true;
18+
19+
meta = with stdenv.lib; {
20+
description = "Remote shell that automatically reconnects without interrupting the session";
21+
license = licenses.asl20;
22+
homepage = https://mistertea.github.io/EternalTCP/;
23+
platforms = platforms.linux;
24+
maintainers = [ maintainers.dezgeg ];
25+
};
26+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -1107,6 +1107,8 @@ with pkgs;
11071107

11081108
et = callPackage ../applications/misc/et {};
11091109

1110+
eternal-terminal = callPackage ../tools/networking/eternal-terminal {};
1111+
11101112
f3 = callPackage ../tools/filesystems/f3 { };
11111113

11121114
fac = callPackage ../development/tools/fac { };

0 commit comments

Comments
 (0)
Please sign in to comment.