about summary refs log tree commit diff
path: root/pkgs/applications/networking/cloudflared
diff options
context:
space:
mode:
authorPiper McCorkle <contact@piperswe.me>2022-08-27 19:08:04 -0500
committerPiper McCorkle <contact@piperswe.me>2022-08-27 20:05:42 -0500
commit36565b308bb133d5231e0981f30fb3c277357024 (patch)
tree10af868e6ed017c221d6ac7bbb67acb984d0e6b0 /pkgs/applications/networking/cloudflared
parentda1b01a144a95b75db46e2c7102eb51200625515 (diff)
cloudflared: 2022.7.1 -> 2022.8.2
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 1e5e8ab749704..0ae2d3b35884b 100644
--- a/pkgs/applications/networking/cloudflared/default.nix
+++ b/pkgs/applications/networking/cloudflared/default.nix
@@ -2,18 +2,18 @@
 
 buildGoModule rec {
   pname = "cloudflared";
-  version = "2022.7.1";
+  version = "2022.8.2";
 
   src = fetchFromGitHub {
     owner  = "cloudflare";
     repo   = "cloudflared";
     rev    = version;
-    hash   = "sha256-kc6+jn4eTCw37u+kPJdx/kxiaj8MnIddDbUFpPfWdlw=";
+    hash   = "sha256-Kyt5d3KmLefTVVUmUUU23UV0lghzhLFCKLlmwTjN68I=";
   };
 
   vendorSha256 = null;
 
-  ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
+  ldflags = [ "-s" "-w" "-X main.Version=${version}" "-X github.com/cloudflare/cloudflared/cmd/cloudflared/updater.BuiltForPackageManager=nixpkgs" ];
 
   preCheck = ''
     # Workaround for: sshgen_test.go:74: mkdir /homeless-shelter/.cloudflared: no such file or directory
@@ -33,6 +33,6 @@ buildGoModule rec {
     homepage    = "https://www.cloudflare.com/products/tunnel";
     license     = licenses.asl20;
     platforms   = platforms.unix;
-    maintainers = with maintainers; [ bbigras enorris thoughtpolice techknowlogick ];
+    maintainers = with maintainers; [ bbigras enorris thoughtpolice ];
   };
 }