tproxy: init at 0.8.1 (#297045)

This commit is contained in:
Sandro 2024-09-01 18:47:21 +02:00 committed by GitHub
commit 7bb8942dcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,36 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule rec {
pname = "tproxy";
version = "0.8.1";
src = fetchFromGitHub {
owner = "kevwan";
repo = "tproxy";
rev = "refs/tags/v${version}";
hash = "sha256-LX3ciC3cMYuQPm6ekEkJPrSdTXH+WZ4flXyrsvJZgn8=";
};
vendorHash = "sha256-7s2gnd9UR/R7H5pcA8NcoenaabSVpMh3qzzkOr5RWnU=";
ldflags = [
"-w"
"-s"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "CLI tool to proxy and analyze TCP connections";
homepage = "https://github.com/kevwan/tproxy";
changelog = "https://github.com/kevwan/tproxy/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ DCsunset ];
mainProgram = "tproxy";
};
}