mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #98558 from andys8/add-tty-share
This commit is contained in:
commit
a55a89cdfd
|
@ -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";
|
||||
|
|
24
pkgs/applications/misc/tty-share/default.nix
Normal file
24
pkgs/applications/misc/tty-share/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue