summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-01-18 21:09:43 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-01-18 21:09:43 +0000
commitdc998de75abd995f43030b967db01b3db043c1a7 (patch)
tree76f967a9ae0264bf3ff95b18897002dfeb32cd34
parentf46ee73ba6851e458dedc78e3f0fe2c6eb099697 (diff)
downloadnixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar.gz
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar.bz2
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar.lz
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar.xz
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.tar.zst
nixpkgs-dc998de75abd995f43030b967db01b3db043c1a7.zip
v2ray: 5.2.0 -> 5.2.1
-rw-r--r--pkgs/tools/networking/v2ray/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/v2ray/default.nix b/pkgs/tools/networking/v2ray/default.nix
index 51f70abcc71..b0cca0985b6 100644
--- a/pkgs/tools/networking/v2ray/default.nix
+++ b/pkgs/tools/networking/v2ray/default.nix
@@ -6,18 +6,18 @@
 
 buildGoModule rec {
   pname = "v2ray-core";
-  version = "5.2.0";
+  version = "5.2.1";
 
   src = fetchFromGitHub {
     owner = "v2fly";
     repo = "v2ray-core";
     rev = "v${version}";
-    hash = "sha256-/n8GyKcTsus7BWspg6Br4ALH98A1dSpkNFNKkRlIqHs=";
+    hash = "sha256-Q7yro9jHNr+HSJkoO7D+T05+AK26eLtw9NfvDTWeMw8=";
   };
 
   # `nix-update` doesn't support `vendorHash` yet.
   # https://github.com/Mic92/nix-update/pull/95
-  vendorSha256 = "sha256-85k6XWe12m2siejfoPJru87/AYdVSl+ag09jUkBIc0M=";
+  vendorSha256 = "sha256-uXxqqPNSa2s1KmBPzvYVdTmOLxaWer9+AupdvL3+qYU=";
 
   ldflags = [ "-s" "-w" "-buildid=" ];