tty-share: init at 2.0.0

This commit is contained in:
andys8 2020-12-19 11:25:45 +01:00
parent 8d3f49ac0f
commit fb5b36afc6
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
# Upstream has a `./vendor` directory with all deps which we rely upon.
buildGoPackage rec {
pname = "tty-share";
version = "2.0.0";
src = fetchFromGitHub {
owner = "elisescu";
repo = "tty-share";
rev = "v${version}";
sha256 = "1d2vd3d1lb4n0jq4s0p5mii1vz4r3z36hykr5mnx53srsni1wsj5";
};
goPackagePath = "github.com/elisescu/tty-share";
meta = with stdenv.lib; {
homepage = "https://tty-share.com";
description = "Share terminal via browser for remote work or shared sessions";
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ andys8 ];
};
}

View file

@ -7882,6 +7882,8 @@ in
tty-clock = callPackage ../tools/misc/tty-clock { };
tty-share = callPackage ../applications/misc/tty-share { };
ttyplot = callPackage ../tools/misc/ttyplot { };
ttyrec = callPackage ../tools/misc/ttyrec { };