base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / tu / tun2socks / package.nix
bloba26c2e3f937742bbcba383ca890a1570d4438d28
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "tun2socks";
8   version = "2.5.2-unstable-2024-02-28";
10   src = fetchFromGitHub {
11     owner = "xjasonlyu";
12     repo = pname;
13     rev = "8c7c9085c21d8be8d18bf79ff547e1f2225842a9";
14     hash = "sha256-LdiCVp6w5yGbFnbArUcjPIwbqFk3zgbbZO1rQNW4w0M=";
15   };
17   vendorHash = "sha256-7x3vVRFFxWhwwelPJ2EV78UTSXIo6bMj3ljVIPTPteg=";
19   ldflags = [
20     "-w" "-s"
21     "-X github.com/xjasonlyu/tun2socks/v2/internal/version.Version=v${version}"
22     "-X github.com/xjasonlyu/tun2socks/v2/internal/version.GitCommit=v${version}"
23   ];
25   meta = with lib; {
26     homepage = "https://github.com/xjasonlyu/tun2socks";
27     description = "tun2socks - powered by gVisor TCP/IP stack";
28     license = licenses.gpl3Plus;
29     maintainers = with maintainers; [ nickcao ];
30     mainProgram = "tun2socks";
31   };