1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/tools/networking/eternal-terminal/default.nix

25 lines
755 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}";
2019-01-26 01:47:20 +00:00
version = "5.1.9";
2018-01-30 05:43:41 +00:00
src = fetchFromGitHub {
owner = "MisterTea";
repo = "EternalTCP";
rev = "refs/tags/et-v${version}";
2019-01-26 01:47:20 +00:00
sha256 = "07ynkcnk3z6wafdlnzdxcd308cw1rzabxyq47ybj79lyji3wsgk7";
2018-01-30 05:43:41 +00:00
};
nativeBuildInputs = [ cmake ninja ];
2018-10-18 00:57:59 +01: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;
2018-10-31 17:59:46 +00:00
homepage = https://mistertea.github.io/EternalTerminal/;
2018-10-26 17:50:51 +01:00
platforms = platforms.linux ++ platforms.darwin;
2018-01-30 05:43:41 +00:00
maintainers = [ maintainers.dezgeg ];
};
}