lol
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "shadowsocks-v2ray-plugin";
9 version = "1.3.2-unstable-2025-09-05";
10
11 src = fetchFromGitHub {
12 owner = "shadowsocks";
13 repo = "v2ray-plugin";
14 rev = "e9af1cdd2549d528deb20a4ab8d61c5fbe51f306";
15 hash = "sha256-VkyK+Ee+RJkBixHiduFP2ET18fDNXuOf8x3h1LN9pbY=";
16 };
17
18 vendorHash = "sha256-FSYv2jC0NU21GtqRkPHjxPcdmXbiIiOM1HsL8x44gZw=";
19
20 meta = {
21 description = "Yet another SIP003 plugin for shadowsocks, based on v2ray";
22 homepage = "https://github.com/shadowsocks/v2ray-plugin/";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [
25 ahrzb
26 neverbehave
27 ];
28 mainProgram = "v2ray-plugin";
29 };
30}