From 3439898888da83027db56dbe3414f3c850f5d981 Mon Sep 17 00:00:00 2001 From: David Florness Date: Thu, 11 Aug 2022 20:04:20 -0400 Subject: [PATCH] telepresence: fix homepage link The current homepage gives a 404: [~]$ curl -v https://www.getambassador.io/docs/telepresence/2.1/quick-start/ 2>&1 | grep -A15 '< HTTP/2' < HTTP/2 404 < age: 102 < cache-control: public, max-age=0, must-revalidate < content-type: text/html; charset=utf-8 < date: Fri, 12 Aug 2022 00:04:41 GMT < etag: 1500322315-ssl < referrer-policy: same-origin < server: Netlify < strict-transport-security: max-age=31536000 < x-content-type-options: nosniff < x-frame-options: DENY < x-nf-request-id: 01GA7NZ6Y5BPQJ4B215ZEMRZ5T < x-xss-protection: 1; mode=block < content-length: 633903 < { [5 bytes data] --- pkgs/tools/networking/telepresence2/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/telepresence2/default.nix b/pkgs/tools/networking/telepresence2/default.nix index 283bf6bd5b2..83449c38306 100644 --- a/pkgs/tools/networking/telepresence2/default.nix +++ b/pkgs/tools/networking/telepresence2/default.nix @@ -31,7 +31,7 @@ buildGoModule rec { meta = with lib; { description = "Local development against a remote Kubernetes or OpenShift cluster"; - homepage = "https://www.getambassador.io/docs/telepresence/2.1/quick-start/"; + homepage = "https://telepresence.io"; license = licenses.asl20; maintainers = with maintainers; [ mausch ]; mainProgram = "telepresence";