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

28 lines
718 B
Nix
Raw Normal View History

2020-06-09 10:19:16 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2020-02-06 16:48:40 +00:00
buildGoModule rec {
pname = "cloudflared";
2020-06-09 10:19:16 +00:00
version = "2020.5.1";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = version;
2020-06-09 10:19:16 +00:00
sha256 = "0r1n3a8h8gyww4p2amb24jmp8zkyxy1ava3nbqgwlfjr3zagga00";
};
2020-06-09 10:19:16 +00:00
vendorSha256 = null;
doCheck = false;
buildFlagsArray = "-ldflags=-X main.Version=${version}";
meta = with stdenv.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;
maintainers = [ maintainers.thoughtpolice maintainers.enorris ];
};
}