nixpkgs/pkgs/servers/reproxy/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-31 20:54:33 +00:00
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2021-05-14 20:57:49 +00:00
buildGoModule rec {
pname = "reproxy";
2021-11-21 15:39:56 +00:00
version = "0.11.0";
2021-05-14 20:57:49 +00:00
src = fetchFromGitHub {
owner = "umputun";
repo = pname;
rev = "v${version}";
2021-11-21 15:39:56 +00:00
hash = "sha256-3kpGeG60WSpcIqVLw437gkDT8XLsDyhGL8/sEnhTgBw=";
2021-05-14 20:57:49 +00:00
};
postPatch = ''
# Requires network access
substituteInPlace app/main_test.go \
--replace "Test_Main" "Skip_Main"
2021-06-09 10:33:00 +00:00
substituteInPlace app/proxy/proxy_test.go \
--replace "TestHttp_matchHandler" "SkipHttp_matchHandler"
2021-05-31 20:54:33 +00:00
'' + lib.optionalString stdenv.isDarwin ''
2021-05-22 19:04:35 +00:00
# Fails on Darwin.
# https://github.com/umputun/reproxy/issues/77
substituteInPlace app/discovery/provider/file_test.go \
--replace "TestFile_Events" "SkipFile_Events" \
--replace "TestFile_Events_BusyListener" "SkipFile_Events_BusyListener"
2021-05-14 20:57:49 +00:00
'';
vendorSha256 = null;
2021-08-26 06:45:51 +00:00
ldflags = [
"-s" "-w" "-X main.revision=${version}"
2021-05-14 20:57:49 +00:00
];
installPhase = ''
install -Dm755 $GOPATH/bin/app $out/bin/reproxy
'';
meta = with lib; {
description = "Simple edge server / reverse proxy";
homepage = "https://reproxy.io/";
license = licenses.mit;
maintainers = with maintainers; [ sikmir ];
};
}