Merge pull request #98558 from andys8/add-tty-share

This commit is contained in:
Doron Behar 2020-12-20 21:24:49 +02:00 committed by GitHub
commit a55a89cdfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View File

@ -580,6 +580,12 @@
githubId = 3808928;
name = "Anders Sildnes";
};
andys8 = {
email = "andys8@users.noreply.github.com";
github = "andys8";
githubId = 13085980;
name = "Andy";
};
aneeshusa = {
email = "aneeshusa@gmail.com";
github = "aneeshusa";

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

@ -7884,6 +7884,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 { };