7f76ac5d6a
Also pass the version to the go linker.
27 lines
695 B
Nix
27 lines
695 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tty-share";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elisescu";
|
|
repo = "tty-share";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-aAqKfi0ZX0UB07yGY6x0HcMspvq4rcJXKHSONxAwMlc=";
|
|
};
|
|
|
|
# Upstream has a `./vendor` directory with all deps which we rely upon.
|
|
vendorSha256 = null;
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|