From a254c001d71b0aeb295cea620a49008cdb943521 Mon Sep 17 00:00:00 2001 From: Javier Maestro Date: Wed, 6 Nov 2024 19:39:26 +0000 Subject: [PATCH] fix: GH checks fail checksum when downloading glib See https://github.com/bazel-contrib/rules_foreign_cc/pull/1316#issuecomment-2460324510 --- examples/third_party/glib/glib_repositories.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/third_party/glib/glib_repositories.bzl b/examples/third_party/glib/glib_repositories.bzl index 876844917..d9f2bede5 100644 --- a/examples/third_party/glib/glib_repositories.bzl +++ b/examples/third_party/glib/glib_repositories.bzl @@ -9,8 +9,8 @@ def glib_repositories(): name = "glib", build_file = Label("//glib:BUILD.glib.bazel"), strip_prefix = "glib-2.77.0", - sha256 = "1897fd8ad4ebb523c32fabe7508c3b0b039c089661ae1e7917df0956a320ac4d", - url = "https://download.gnome.org/sources/glib/2.77/glib-2.77.0.tar.xz", + sha256 = "d61839d9c7b2dd5676bda640ef2482746d896047dfca54a9ab6f877d919cee2f", + url = "https://github.com/GNOME/glib/archive/refs/tags/2.77.0.tar.gz", ) maybe( http_archive,