linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / shadowsocks-v2ray-plugin / default.nix
blobbe3a2f77d5c499c02b94831a08ad745806543f34
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "shadowsocks-v2ray-plugin";
5   version = "1.3.1";
7   src = fetchFromGitHub {
8     owner = "shadowsocks";
9     repo = "v2ray-plugin";
10     rev = "v${version}";
11     sha256 = "0aq445gnqk9dxs1hkw7rvk86wg0iyiy0h740lvyh6d9zsqhf61wb";
12   };
14   vendorSha256 = "0vzd9v33p4a32f5ic9ir4g5ckis06wpdf07a649h9qalimxnvzfz";
16   meta = with lib; {
17     description = "Yet another SIP003 plugin for shadowsocks, based on v2ray";
18     homepage = "https://github.com/shadowsocks/v2ray-plugin/";
19     license = licenses.mit;
20     maintainers = [ maintainers.ahrzb ];
21   };