-
Notifications
You must be signed in to change notification settings - Fork 620
/
MODULE.bazel
32 lines (28 loc) · 909 Bytes
/
MODULE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# SPDX-License-Identifier: BSD-3-Clause
# Copyright Contributors to the OpenEXR Project.
module(
name = "openexr",
compatibility_level = 1,
)
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "imath")
bazel_dep(name = "libdeflate")
bazel_dep(name = "platforms", version = "0.0.10")
archive_override(
module_name = "imath",
patches = [
"//bazel:imath_add_build_file.patch",
"//bazel:imath_module_dot_bazel.patch",
],
strip_prefix = "Imath-main",
urls = ["https://github.com/AcademySoftwareFoundation/Imath/archive/refs/heads/main.zip"],
)
archive_override(
module_name = "libdeflate",
patches = [
"//bazel:libdeflate_add_build_file.patch",
"//bazel:libdeflate_module_dot_bazel.patch",
],
strip_prefix = "libdeflate-master",
urls = ["https://github.com/ebiggers/libdeflate/archive/refs/heads/master.zip"],
)