nixpkgs/pkgs/applications/networking/cloudflared/default.nix

28 lines
695 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-02-06 17:48:40 +01:00
buildGoModule rec {
pname = "cloudflared";
2021-10-29 09:42:05 +02:00
version = "2021.10.5";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = version;
2021-10-29 09:42:05 +02:00
sha256 = "sha256-vz7S6Qzr10Idy83ogMIHEHrjxGxxjtFnzNsuhbZqUnA=";
};
2020-06-09 12:19:16 +02:00
vendorSha256 = null;
doCheck = false;
2021-08-26 08:45:51 +02:00
ldflags = [ "-X main.Version=${version}" ];
meta = with lib; {
description = "CloudFlare Argo Tunnel daemon (and DNS-over-HTTPS client)";
2020-02-10 16:59:52 +01:00
homepage = "https://www.cloudflare.com/products/argo-tunnel";
license = licenses.unfree;
platforms = platforms.unix;
maintainers = [ maintainers.thoughtpolice maintainers.enorris ];
};
}