Skip to content

Commit

Permalink
hola-proxy: init at 1.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ligthiago committed Aug 19, 2024
1 parent 4a7326c commit 428610e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/by-name/ho/hola-proxy/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "hola-proxy";
version = "1.13.3";

src = fetchFromGitHub {
owner = "Snawoot";
repo = "hola-proxy";
rev = "refs/tags/v${version}";
hash = "sha256-T4kXwseOspXtu6jMCytCqROwQP1XjKFT2ejfAA36HUY=";
};

vendorHash = "sha256-1mQzeopJzzXV4cCHu30QelCIz6NivOImpiCTpGnAtzY=";

ldflags = [
"-s"
"-w"
];

meta = {
description = "Standalone client for proxies of Hola VPN";
homepage = "https://github.com/Snawoot/hola-proxy/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Ligthiago ];
mainProgram = "hola-proxy";
};
}

0 comments on commit 428610e

Please sign in to comment.