mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
40 lines
1007 B
Nix
40 lines
1007 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "alpaca-proxy";
|
|
version = "2.0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samuong";
|
|
repo = "alpaca";
|
|
rev = "v${version}";
|
|
hash = "sha256-Rf8//4FeruVZZ//uba80z20XGUxycwF91Aa09fosRXI=";
|
|
};
|
|
|
|
vendorHash = "sha256-JEiHgyPJvWmtPf8R4aX/qlevfZRdKajre324UsgRm5Y=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.BuildVersion=v${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
# executable is renamed to alpaca-proxy, to avoid collision with the alpaca python application
|
|
mv $out/bin/alpaca $out/bin/alpaca-proxy
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "HTTP forward proxy with PAC and NTLM authentication support";
|
|
homepage = "https://github.com/samuong/alpaca";
|
|
changelog = "https://github.com/samuong/alpaca/releases/tag/v${src.rev}";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ _1nv0k32 ];
|
|
mainProgram = "alpaca-proxy";
|
|
};
|
|
}
|