about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2024-02-17 23:48:26 +0400
committerNikolay Korotkiy <sikmir@disroot.org>2024-03-09 09:58:31 +0400
commit0ac49e81be86cff7e061409570a3f3bb5f196d23 (patch)
treef7fa34c727a872b4d7f5afb16389b5ce89eec11a /pkgs/servers
parent3fafcf0683f662f4197598533979f12e6cd0a3c4 (diff)
downloadnixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar.gz
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar.bz2
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar.lz
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar.xz
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.tar.zst
nixlib-0ac49e81be86cff7e061409570a3f3bb5f196d23.zip
reproxy: migrate to by-name
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/reproxy/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/servers/reproxy/default.nix b/pkgs/servers/reproxy/default.nix
deleted file mode 100644
index f90ad1246cf8..000000000000
--- a/pkgs/servers/reproxy/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ 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";
-  };
-}