summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-11-15 05:52:26 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-11-15 05:52:26 +0000
commit3c3e82f58388a8eb90153e3b6697a80a286fe144 (patch)
tree75e0e31edf85c8edbff06dea714dc831763f9b22
parent2387a37fa0c686f4541838843d07ae1104e180d7 (diff)
downloadnixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar.gz
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar.bz2
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar.lz
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar.xz
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.tar.zst
nixpkgs-3c3e82f58388a8eb90153e3b6697a80a286fe144.zip
v2ray: 5.8.0 -> 5.11.0
-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 34f1fd48335..cbaeead5a4b 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.8.0";
+  version = "5.11.0";
 
   src = fetchFromGitHub {
     owner = "v2fly";
     repo = "v2ray-core";
     rev = "v${version}";
-    hash = "sha256-fMAPlPn53GkYKpraRS58XTF//IMZtzssaQpBkirEWfw=";
+    hash = "sha256-wiAK3dzZ9TGYkt7MmBkYTD+Mi5BEid8sziDM1nI3Z80=";
   };
 
   # `nix-update` doesn't support `vendorHash` yet.
   # https://github.com/Mic92/nix-update/pull/95
-  vendorHash = "sha256-un3faML5u9kmlsJw/hitoRcGYtVukF+V/dJMFyGhr8Q=";
+  vendorHash = "sha256-pC3KXx1KBvQx6eZZG1czaGjCOd0xAB42B5HmKn7p52c=";
 
   ldflags = [ "-s" "-w" "-buildid=" ];