mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
666 B
Nix
25 lines
666 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
# Upstream has a `./vendor` directory with all deps which we rely upon.
|
|
buildGoPackage rec {
|
|
pname = "tty-share";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elisescu";
|
|
repo = "tty-share";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+bdQ7KyGEdJJAopzGnDOcLvFNyiKqpagPR1EoU1VR5E=";
|
|
};
|
|
|
|
goPackagePath = "github.com/elisescu/tty-share";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|