summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-10-22 00:32:50 +0000
committerBobby Rong <rjl931189261@126.com>2023-10-26 21:39:08 +0800
commit2f57f6eab42a82e7a3f1858744b56592010b1c98 (patch)
treee69c9a6b50e79d996d6f6d04f2bf3a21a3547611
parent8efd5d1e283604f75a808a20e6cde0ef313d07d4 (diff)
downloadnixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar.gz
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar.bz2
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar.lz
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar.xz
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.tar.zst
nixpkgs-2f57f6eab42a82e7a3f1858744b56592010b1c98.zip
v2ray: 5.7.0 -> 5.8.0
https://github.com/v2fly/v2ray-core/compare/v5.7.0...v5.8.0

Fixes https://hydra.nixos.org/build/239295592/nixlog/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 cb0132a64ad..34f1fd48335 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.7.0";
+  version = "5.8.0";
 
   src = fetchFromGitHub {
     owner = "v2fly";
     repo = "v2ray-core";
     rev = "v${version}";
-    hash = "sha256-gdDV5Cd/DjEqSiOF7j5a8QLtdJiFeNCnHoA4XD+yiGA=";
+    hash = "sha256-fMAPlPn53GkYKpraRS58XTF//IMZtzssaQpBkirEWfw=";
   };
 
   # `nix-update` doesn't support `vendorHash` yet.
   # https://github.com/Mic92/nix-update/pull/95
-  vendorHash = "sha256-uq0v14cRGmstJabrERsa+vFRX6Bg8+5CU6iV8swrL/I=";
+  vendorHash = "sha256-un3faML5u9kmlsJw/hitoRcGYtVukF+V/dJMFyGhr8Q=";
 
   ldflags = [ "-s" "-w" "-buildid=" ];