nixpkgs/pkgs/tools/networking/hysteria/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
880 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "hysteria";
2022-09-11 16:04:36 +00:00
version = "1.2.1";
src = fetchFromGitHub {
owner = "HyNetwork";
2022-08-15 03:28:28 +00:00
repo = pname;
rev = "v${version}";
2022-09-11 16:04:36 +00:00
sha256 = "sha256-xL8xRVJdCyaP39TO+cJLAPbdc7WHxgBQMEyxkyhWlA8=";
};
2022-10-09 00:33:13 +00:00
vendorSha256 = "sha256-VCQHkkYmGU0ZPmTuYu2XFa5ezDJ3x7dZGN+Usmq4sOY=";
proxyVendor = true;
2022-09-11 16:04:36 +00:00
ldflags = [
"-s"
"-w"
"-X main.appVersion=${version}"
"-X main.appCommit=${version}"
];
postInstall = ''
mv $out/bin/cmd $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/HyNetwork/hysteria";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ oluceps ];
};
}