From 8d3f49ac0f1d76a7fbe5042f26d74413852c88f4 Mon Sep 17 00:00:00 2001 From: andys8 Date: Sat, 19 Dec 2020 11:25:32 +0100 Subject: [PATCH 1/2] maintainers: add andys8 --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e1b000529485..9ea9b3184415 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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"; From fb5b36afc61a20515fd86cf2e4aad7f806e468ca Mon Sep 17 00:00:00 2001 From: andys8 Date: Sat, 19 Dec 2020 11:25:45 +0100 Subject: [PATCH 2/2] tty-share: init at 2.0.0 --- pkgs/applications/misc/tty-share/default.nix | 24 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/tty-share/default.nix diff --git a/pkgs/applications/misc/tty-share/default.nix b/pkgs/applications/misc/tty-share/default.nix new file mode 100644 index 000000000000..a9fcb969f675 --- /dev/null +++ b/pkgs/applications/misc/tty-share/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 25adca6946e4..4b40d8e609d7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };