python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / sh / shadowsocks-v2ray-plugin / package.nix
blob12117252abf68a6938a47b4c13a8581f106222a8
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "shadowsocks-v2ray-plugin";
5   version = "1.3.1";
6   # Version 1.3.2 has runtime failures with Go 1.19
7   # https://github.com/NixOS/nixpkgs/issues/219343
8   # https://github.com/shadowsocks/v2ray-plugin/issues/292
9   # nixpkgs-update: no auto update
11   src = fetchFromGitHub {
12     owner = "shadowsocks";
13     repo = "v2ray-plugin";
14     rev = "v${version}";
15     hash = "sha256-iwfjINY/NQP9poAcCHz0ETxu0Nz58AmD7i1NbF8hBCs=";
16   };
18   vendorHash = "sha256-3/1te41U4QQTMeoA1y43QMfJyiM5JhaLE0ORO8ZO7W8=";
20   meta = with lib; {
21     description = "Yet another SIP003 plugin for shadowsocks, based on v2ray";
22     homepage = "https://github.com/shadowsocks/v2ray-plugin/";
23     license = licenses.mit;
24     maintainers = [ maintainers.ahrzb ];
25     mainProgram = "v2ray-plugin";
26   };