Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
834 B
Nix
35 lines
834 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tun2socks";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xjasonlyu";
|
|
repo = "tun2socks";
|
|
tag = "v${version}";
|
|
hash = "sha256-ec4M107BE6MCnW/uz9S83JYJtY9tsQQXDFL98h951DA=";
|
|
};
|
|
|
|
vendorHash = "sha256-YAAdyV2p/Ci9RzgVWYXBwR/ctERSQ8SPK7AbwRuUJiI=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
"-X github.com/xjasonlyu/tun2socks/v2/internal/version.Version=v${version}"
|
|
"-X github.com/xjasonlyu/tun2socks/v2/internal/version.GitCommit=v${version}"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/xjasonlyu/tun2socks";
|
|
description = "Routes network traffic from any application through a proxy";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ nickcao ];
|
|
mainProgram = "tun2socks";
|
|
};
|
|
}
|