evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / tt / tty-share / package.nix
blob7f2fe8c162a75da2e4a005e0e782ea2f521c96de
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "tty-share";
5   version = "2.4.0";
7   src = fetchFromGitHub {
8     owner = "elisescu";
9     repo = "tty-share";
10     rev = "v${version}";
11     sha256 = "sha256-7rNSBpiZslUGWw0P/Q1zRtNxo9MN8Vq6hG8pD6bJIsA=";
12   };
14   # Upstream has a `./vendor` directory with all deps which we rely upon.
15   vendorHash = null;
17   ldflags = [ "-s" "-w" "-X main.version=${version}" ];
19   meta = with lib; {
20     homepage = "https://tty-share.com";
21     description = "Share terminal via browser for remote work or shared sessions";
22     license = licenses.mit;
23     maintainers = with maintainers; [ andys8 ];
24     mainProgram = "tty-share";
25   };