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

25 lines
730 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, ninja, gflags, libsodium, protobuf }:
2018-01-30 05:43:41 +00:00
stdenv.mkDerivation rec {
name = "eternal-terminal-${version}";
2018-10-17 23:57:59 +00:00
version = "5.1.6";
2018-01-30 05:43:41 +00:00
src = fetchFromGitHub {
owner = "MisterTea";
repo = "EternalTCP";
rev = "refs/tags/et-v${version}";
2018-10-17 23:57:59 +00:00
sha256 = "0df573c5hi3hxa0d3m02zf2iyh841540dklj9lmp6faik8cp39jz";
2018-01-30 05:43:41 +00:00
};
nativeBuildInputs = [ cmake ninja ];
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;
homepage = https://mistertea.github.io/EternalTCP/;
platforms = platforms.linux;
maintainers = [ maintainers.dezgeg ];
};
}