Skip to content

Commit bc811c8

Browse files
committed
fix: downgrade patchelf to 0.17.2
For older Ubuntu versions `patchelf` 0.18.0 seems to break things. See NixOS/patchelf#492. There is a fix available, but no 0.19.0 cut yet.
1 parent 1fbdadb commit bc811c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "ht
2929
http_archive(
3030
name = "patchelf_linux_amd64",
3131
build_file_content = "alias(name='patchelf', actual='bin/patchelf')",
32-
integrity = "sha256-zoTyRH+3qGeeWLxUog3CsBs3tYAuEsV+7OdypvFL8/A=",
33-
urls = ["https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-x86_64.tar.gz"],
32+
integrity = "sha256-o/ucHeNRK8kfJ8xHKX1tbPIIre6bZO1xkTDaWawT4ms=",
33+
urls = ["https://github.com/NixOS/patchelf/releases/download/0.17.2/patchelf-0.17.2-x86_64.tar.gz"],
3434
)
3535

3636
http_archive(
3737
name = "patchelf_linux_arm64",
3838
build_file_content = "alias(name='patchelf', actual='bin/patchelf')",
39-
integrity = "sha256-rhPi7/4HfoKb51kYI5a5Mdj4XPuc/p1JOFUW6jZ+97I=",
40-
urls = ["https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-aarch64.tar.gz"],
39+
integrity = "sha256-5RZetZKjF+H22grH/LzPYNf7jlrB8NczapvlHCMwiwY=",
40+
urls = ["https://github.com/NixOS/patchelf/releases/download/0.17.2/patchelf-0.17.2-aarch64.tar.gz"],
4141
)
4242

4343
bazel_lib_toolchains = use_extension("@aspect_bazel_lib//lib:extensions.bzl", "toolchains")

0 commit comments

Comments
 (0)