Merge pull request #89910 from zowoq/cloudflared

cloudflared: 2020.3.2 -> 2020.5.1
This commit is contained in:
Mario Rodas 2020-06-09 23:10:25 -05:00 committed by GitHub
commit 8128858bbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,17 @@
{ stdenv, buildGoModule, fetchFromGitHub, runCommand }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "cloudflared";
version = "2020.3.2";
version = "2020.5.1";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = version;
sha256 = "1vbxm5z72y9zfg4carmja3fc1vhkanmc25pgnlw550p1l14y6404";
sha256 = "0r1n3a8h8gyww4p2amb24jmp8zkyxy1ava3nbqgwlfjr3zagga00";
};
vendorSha256 = "14w2iz3ycbzfvlr8a6qn86aaa8687cm203d73wpfkfskp277hwz0";
deleteVendor = true;
vendorSha256 = null;
buildFlagsArray = "-ldflags=-X main.Version=${version}";