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

28 lines
697 B
Nix
Raw Normal View History

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