From 76dcdfb98cceee9d3451dfffedd50c1f6eaacf80 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 27 Feb 2026 07:02:06 +0800 Subject: [PATCH] Use github repo for curl source Since we already rely on github for builds, this removes a point of failure. Also curl.se consistently fails from a VPS machine for me - not sure if they're blocking IP ranges, but it works fine on github. --- build.zig.zon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig.zon b/build.zig.zon index 635a6b7b..b7525c77 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -28,7 +28,7 @@ .hash = "boringssl-0.1.0-VtJeWehMAAA4RNnwRnzEvKcS9rjsR1QVRw1uJrwXxmVK", }, .curl = .{ - .url = "https://curl.se/download/curl-8.18.0.tar.gz", + .url = "https://github.com/curl/curl/releases/download/curl-8_18_0/curl-8.18.0.tar.gz", .hash = "N-V-__8AALp9QAGn6CCHZ6fK_FfMyGtG824LSHYHHasM3w-y", }, },