about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/tty-share/default.nix
blob: a9fcb969f675e53ef46c1ab086c4304765fb132a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}