From 00835ed735ebd246d9f6dbaece0319f898325ac9 Mon Sep 17 00:00:00 2001 From: Dominik Roos Date: Wed, 12 Jul 2023 16:31:07 +0200 Subject: [PATCH] deps: change rules_antlr fork (#4362) The fork of rules_antlr that we depend on has disappeared https://github.com/artisoft-io We switch to another fork that contains the same changes that artisoft-io had. --- WORKSPACE | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 9936bb5018..856854ca8a 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -125,9 +125,11 @@ rules_pkg_dependencies() # Antlr rules http_archive( name = "rules_antlr", - sha256 = "234c401cfabab78f2d7f5589239d98f16f04338768a72888f660831964948ab1", + # XXX(roosd): This hash is not guaranteed to be stable by GitHub. + # See: https://github.blog/changelog/2023-01-30-git-archive-checksums-may-change + sha256 = "8d7c457cc266965bdcf7e85aa349d2f851b772a55877354d9ae92ada7a62c857", strip_prefix = "rules_antlr-0.6.0", - urls = ["https://github.com/artisoft-io/rules_antlr/archive/0.6.0.tar.gz"], + urls = ["https://github.com/bacek/rules_antlr/archive/refs/tags/0.6.0.tar.gz"], ) load("@rules_antlr//antlr:repositories.bzl", "rules_antlr_dependencies")