nixpkgs/pkgs/applications/misc/tty-share/default.nix

25 lines
666 B
Nix
Raw Normal View History

{ 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";
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 ];
};
}