about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-06-12 13:10:14 +0200
committerGitHub <noreply@github.com>2023-06-12 13:10:14 +0200
commit577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8 (patch)
treed6040b492d3516b9f8c793d3b1ba2ed722eeb042 /pkgs
parentcbe4780892356a6c74caebd54dc88b9fe0a10d66 (diff)
parent1bcccfa84fbe0af85a1ffc42a96db80566849537 (diff)
downloadnixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar.gz
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar.bz2
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar.lz
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar.xz
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.tar.zst
nixlib-577db5f1bd2c7ff8f4a815b37cc0eee3a49e25e8.zip
Merge pull request #237292 from mlyxshi/master
hysteria: 1.3.4 -> 1.3.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/hysteria/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/networking/hysteria/default.nix b/pkgs/tools/networking/hysteria/default.nix
index 978d6d7c2bb2..4b63992e85c5 100644
--- a/pkgs/tools/networking/hysteria/default.nix
+++ b/pkgs/tools/networking/hysteria/default.nix
@@ -4,16 +4,16 @@
 }:
 buildGoModule rec {
   pname = "hysteria";
-  version = "1.3.4";
+  version = "1.3.5";
 
   src = fetchFromGitHub {
-    owner = "HyNetwork";
+    owner = "apernet";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-Xmc6xkOepvLDHcIHaYyJIO2e3yIWQxPEacS7Wx09eAM=";
+    hash = "sha256-gNAK+WOowBlEzUYX25cQxywerNlMIx7cqG1wV9iLS5s=";
   };
 
-  vendorSha256 = "sha256-hpV+16yU03fT8FIfxbEnIcafn6H/IMpMns9onPPPrDk=";
+  vendorHash = "sha256-Ixfwqrg+4/dzJLj3q7NbgpUXFj4qGKT0QVFQV/X4pqw=";
   proxyVendor = true;
 
   ldflags = [
@@ -31,7 +31,7 @@ buildGoModule rec {
 
   meta = with lib; {
     description = "A feature-packed proxy & relay utility optimized for lossy, unstable connections";
-    homepage = "https://github.com/HyNetwork/hysteria";
+    homepage = "https://github.com/apernet/hysteria";
     license = licenses.mit;
     platforms = platforms.linux;
     maintainers = with maintainers; [ oluceps ];