Skip to content

Commit

Permalink
Fix maybe syntax for bazel
Browse files Browse the repository at this point in the history
Signed-off-by: Kimball Thurston <kdt3rd@gmail.com>
  • Loading branch information
kdt3rd committed Apr 25, 2023
1 parent 8378300 commit bbaaaae
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions bazel/third_party/openexr_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ def openexr_deps():
"""Fetches dependencies (zlib and Imath) of OpenEXR and Skylib for header generation."""

maybe(
http_archive(
name = "libdeflate",
build_file = "@com_openexr//:bazel/third_party/libdeflate.BUILD",
sha256 = "225d982bcaf553221c76726358d2ea139bb34913180b20823c782cede060affd",
strip_prefix = "libdeflate-1.18",
urls = ["https://github.com/ebiggers/libdeflate/archive/refs/tags/v1.18.tar.gz"],
)
http_archive,
name = "libdeflate",
build_file = "@com_openexr//:bazel/third_party/libdeflate.BUILD",
sha256 = "225d982bcaf553221c76726358d2ea139bb34913180b20823c782cede060affd",
strip_prefix = "libdeflate-1.18",
urls = ["https://github.com/ebiggers/libdeflate/archive/refs/tags/v1.18.tar.gz"],
)

maybe(
Expand Down

0 comments on commit bbaaaae

Please sign in to comment.