{ lib , fetchFromGitHub , buildGoModule }: buildGoModule rec { pname = "hysteria"; version = "2.2.2"; src = fetchFromGitHub { owner = "apernet"; repo = pname; rev = "app/v${version}"; hash = "sha256-5j24wIZ4LloE9t0sv5p+oiYmexOaORASNN9JylXxrk4="; }; vendorHash = "sha256-ErU1yEtSuMVkoJv9hyaE4OZS5o7GxuleoK0Q9BI2skw="; proxyVendor = true; ldflags = [ "-s" "-w" "-X main.appVersion=${version}" ]; postInstall = '' mv $out/bin/app $out/bin/hysteria ''; # Network required doCheck = false; meta = with lib; { description = "A feature-packed proxy & relay utility optimized for lossy, unstable connections"; homepage = "https://github.com/apernet/hysteria"; license = licenses.mit; platforms = platforms.linux; maintainers = with maintainers; [ oluceps ]; }; }