2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2020-12-19 11:25:45 +01:00
|
|
|
|
|
|
|
# Upstream has a `./vendor` directory with all deps which we rely upon.
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "tty-share";
|
2021-03-10 01:24:56 +01:00
|
|
|
version = "2.2.0";
|
2020-12-19 11:25:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elisescu";
|
|
|
|
repo = "tty-share";
|
|
|
|
rev = "v${version}";
|
2021-03-10 01:24:56 +01:00
|
|
|
sha256 = "sha256-+bdQ7KyGEdJJAopzGnDOcLvFNyiKqpagPR1EoU1VR5E=";
|
2020-12-19 11:25:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
goPackagePath = "github.com/elisescu/tty-share";
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-12-19 11:25:45 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|