Skip to content

Commit

Permalink
Use Bazel standard convention for repository names
Browse files Browse the repository at this point in the history
Signed-off-by: Vertexwahn <julian.amann@tum.de>
  • Loading branch information
Vertexwahn authored and meshula committed Jul 17, 2021
1 parent 9924c7a commit ad2d368
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ cc_library(
":OpenEXRConfig.h",
":OpenEXRConfigInternal.h",
"@Imath",
"@zlib",
"@net_zlib_zlib//:zlib",
],
)

Expand Down
7 changes: 5 additions & 2 deletions bazel/third_party/openexr_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ def openexr_deps():

maybe(
http_archive,
name = "zlib",
name = "net_zlib_zlib",
build_file = "@openexr//:bazel/third_party/zlib.BUILD",
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
strip_prefix = "zlib-1.2.11",
urls = ["https://zlib.net/zlib-1.2.11.tar.gz"],
urls = [
"https://zlib.net/zlib-1.2.11.tar.gz",
"https://mirror.bazel.build/zlib.net/zlib-1.2.11.tar.gz",
],
)

# sha256 was determined using:
Expand Down

0 comments on commit ad2d368

Please sign in to comment.