summaryrefslogtreecommitdiff
path: root/pkgs/servers/reproxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/reproxy/default.nix')
-rw-r--r--pkgs/servers/reproxy/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/servers/reproxy/default.nix b/pkgs/servers/reproxy/default.nix
new file mode 100644
index 000000000000..0a9095857e44
--- /dev/null
+++ b/pkgs/servers/reproxy/default.nix
@@ -0,0 +1,36 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "reproxy";
+ version = "0.6.0";
+
+ src = fetchFromGitHub {
+ owner = "umputun";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-8veGMiRT59oLcMUxERI+2uRQVvbiuXTbrBi1GqoPe0M=";
+ };
+
+ postPatch = ''
+ # Requires network access
+ substituteInPlace app/main_test.go \
+ --replace "Test_Main" "Skip_Main"
+ '';
+
+ vendorSha256 = null;
+
+ buildFlagsArray = [
+ "-ldflags=-s -w -X main.revision=${version}"
+ ];
+
+ 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 ];
+ };
+}