Skip to content

Commit

Permalink
Use versioned releases for ffmpeg.
Browse files Browse the repository at this point in the history
Fixes #3962
  • Loading branch information
Zemnmez committed Nov 17, 2023
1 parent 640e5b3 commit e323bff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bzl/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -247,17 +247,17 @@ exports_files(glob(["**/*"]))
name = "ffmpeg_linux_x64",
# since this URL serves a different asset when ffmpeg's version is bumped, I'm using
# this query component to cache bust when that does occur.
url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz?ver=v6.0.1",
strip_prefix = "ffmpeg-6.0.1-amd64-static",
url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-amd64-static.tar.xz",
strip_prefix = "ffmpeg-5.1.1-amd64-static",
build_file_content = """
exports_files(glob(["**/*"]))
""",
sha256 = "28268bf402f1083833ea269331587f60a242848880073be8016501d864bd07a5",
sha256 = "2d848c37f7f276be0262d9123a84fbfe72bb159921ffcce3bd7106f143d29f42",
)

http_archive(
name = "ffmpeg_linux_i686",
url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-i686-static.tar.xz",
url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-i686-static.tar.xz",
strip_prefix = "ffmpeg-6.0-i686-static",
build_file_content = """
exports_files(glob(["**/*"]))
Expand All @@ -267,7 +267,7 @@ exports_files(glob(["**/*"]))

http_archive(
name = "ffmpeg_linux_arm64",
url = "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-arm64-static.tar.xz",
url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-arm64-static.tar.xz",
strip_prefix = "ffmpeg-6.0-arm64-static",
build_file_content = """
exports_files(glob(["**/*"]))
Expand Down

0 comments on commit e323bff

Please sign in to comment.