summary refs log tree commit diff
path: root/pkgs/applications/networking/cloudflared
diff options
context:
space:
mode:
authorLorenz Leutgeb <lorenz@falsum.org>2022-02-12 18:15:12 +0100
committerGitHub <noreply@github.com>2022-02-12 18:15:12 +0100
commitbe5d039d905bdda2a7583dd9d5226f5bd300a910 (patch)
treec913d98ddde7de18afc7deaa4d80a49fd7993e6d /pkgs/applications/networking/cloudflared
parent21c90df5e804cb81e1f274fdd8c52f2eb3be68f1 (diff)
downloadnixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar.gz
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar.bz2
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar.lz
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar.xz
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.tar.zst
nixpkgs-be5d039d905bdda2a7583dd9d5226f5bd300a910.zip
cloudflared: 2021.1.2 -> 2022.2.0
Diffstat (limited to 'pkgs/applications/networking/cloudflared')
-rw-r--r--pkgs/applications/networking/cloudflared/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cloudflared/default.nix b/pkgs/applications/networking/cloudflared/default.nix
index c1629afbd03..631f4c6a583 100644
--- a/pkgs/applications/networking/cloudflared/default.nix
+++ b/pkgs/applications/networking/cloudflared/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "cloudflared";
-  version = "2022.1.2";
+  version = "2022.2.0";
 
   src = fetchFromGitHub {
     owner  = "cloudflare";
     repo   = "cloudflared";
     rev    = version;
-    hash   = "sha256-PdmYOFy6CWMqHlcK0PeHPGCVSLhIJOIDnXOAh/qYt+8=";
+    hash   = "sha256-yo4Tu9wSxGdUAr2436lAlaP2U+5m/J4+oNQd/UQk3a0=";
   };
 
   vendorSha256 = null;
@@ -18,8 +18,8 @@ buildGoModule rec {
   ldflags = [ "-X main.Version=${version}" ];
 
   meta = with lib; {
-    description = "CloudFlare Argo Tunnel daemon (and DNS-over-HTTPS client)";
-    homepage    = "https://www.cloudflare.com/products/argo-tunnel";
+    description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)";
+    homepage    = "https://www.cloudflare.com/products/tunnel";
     license     = licenses.unfree;
     platforms   = platforms.unix;
     maintainers = with maintainers; [ bbigras enorris thoughtpolice ];