mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
38 lines
919 B
Nix
38 lines
919 B
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "reproxy";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "umputun";
|
|
repo = "reproxy";
|
|
rev = "v${version}";
|
|
hash = "sha256-/ydpqi7O4z41YxYb/RngPWk/79h3MIxAopzqIDMgw1g=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X main.revision=${version}"
|
|
];
|
|
|
|
checkFlags = [
|
|
# Requires network access or fluky
|
|
"-skip=^Test(_MainWithPlugin|_MainWithSSL|_Main|Http_matchHandler|Http_withBasicAuth|File_Events|File_Events_BusyListener)$"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{app,reproxy}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple edge server / reverse proxy";
|
|
homepage = "https://reproxy.io/";
|
|
changelog = "https://github.com/umputun/reproxy/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
mainProgram = "reproxy";
|
|
};
|
|
}
|