mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
eternal-terminal: init at 4.1.2
This commit is contained in:
parent
41013a5d0f
commit
ab5357b80d
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/networking/eternal-terminal/default.nix
Normal file
26
pkgs/tools/networking/eternal-terminal/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, gflags, glog, libsodium, protobuf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "eternal-terminal-${version}";
|
||||
version = "4.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MisterTea";
|
||||
repo = "EternalTCP";
|
||||
rev = "refs/tags/et-v${version}";
|
||||
sha256 = "1zy30ccsddgs2wqwxphnx5i00j4gf69lr68mzg9x6imqfz0sbcjz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ gflags glog libsodium protobuf ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Remote shell that automatically reconnects without interrupting the session";
|
||||
license = licenses.asl20;
|
||||
homepage = https://mistertea.github.io/EternalTCP/;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.dezgeg ];
|
||||
};
|
||||
}
|
|
@ -1107,6 +1107,8 @@ with pkgs;
|
|||
|
||||
et = callPackage ../applications/misc/et {};
|
||||
|
||||
eternal-terminal = callPackage ../tools/networking/eternal-terminal {};
|
||||
|
||||
f3 = callPackage ../tools/filesystems/f3 { };
|
||||
|
||||
fac = callPackage ../development/tools/fac { };
|
||||
|
|
Loading…
Reference in a new issue