cloudflared: 2023.10.0 -> 2024.1.5

This commit is contained in:
sefidel 2024-02-02 16:53:22 +09:00
parent 77690f548d
commit f13a587451
No known key found for this signature in database
GPG Key ID: 2A34577ACC81480A
2 changed files with 15 additions and 4 deletions

View File

@ -7,13 +7,13 @@
buildGoModule rec {
pname = "cloudflared";
version = "2023.10.0";
version = "2024.1.5";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = "refs/tags/${version}";
hash = "sha256-T+hxNvsckL8PAVb4GjXhnkVi3rXMErTjRgGxCUypwVA=";
hash = "sha256-g7FUwEs/wEcX1vRgfoQZw+uMzx6ng3j4vFwhlHs6WKg=";
};
vendorHash = null;

View File

@ -4701,8 +4701,19 @@ with pkgs;
cloudbrute = callPackage ../tools/security/cloudbrute { };
cloudflared = callPackage ../applications/networking/cloudflared {
# https://github.com/cloudflare/cloudflared/issues/1054
buildGoModule = buildGo120Module;
# https://github.com/cloudflare/cloudflared/issues/1151#issuecomment-1888819250
buildGoModule = buildGoModule.override {
go = go.overrideAttrs {
pname = "cloudflare-go";
version = "0-unstable-2023-12-06";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "go";
rev = "34129e47042e214121b6bbff0ded4712debed18e";
sha256 = "sha256-RA9KTY4cSxIt7dyJgAFQPemc6YBgcSwc/hqB4JHPxng=";
};
};
};
};
cloudflare-dyndns = callPackage ../applications/networking/cloudflare-dyndns { };