-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathversions.bzl
More file actions
63 lines (63 loc) · 2.68 KB
/
versions.bzl
File metadata and controls
63 lines (63 loc) · 2.68 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
VERSIONS = {
"python": "3.12",
"aspect_bazel_lib": {
"type": "github_archive",
"repo": "aspect-build/bazel-lib",
"version": "2.21.2",
"sha256": "079e47b2fd357396a376dec6ad7907a51028cb2b98233b45e5269cd5ce2fea51",
"urls": ["https://github.com/{repo}/archive/v{version}.tar.gz"],
"strip_prefix": "bazel-lib-{version}",
},
"yq.bzl": {
"type": "github_archive",
"repo": "bazel-contrib/yq.bzl",
"version": "0.1.1",
"sha256": "b51d82b561a78ab21d265107b0edbf98d68a390b4103992d0b03258bb3819601",
"urls": ["https://github.com/{repo}/releases/download/v{version}/yq.bzl-v{version}.tar.gz"],
"strip_prefix": "yq.bzl-{version}",
"patch_args": ["-p1"],
"patches": ["@envoy-website//bazel:yq.patch"],
},
"com_github_twbs_bootstrap": {
"type": "github_archive",
"repo": "twbs/bootstrap",
"version": "5.3.8",
"sha256": "e48d2bb45df830b6f70e2fb5a592f07f8f892dcbd3eb33245a48593cc59aa6dd",
"urls": ["https://github.com/{repo}/archive/refs/tags/v{version}.tar.gz"],
"strip_prefix": "bootstrap-{version}",
"build_file": "@envoy-website//bazel:bootstrap.BUILD",
},
"envoy": {
"type": "github_archive",
"repo": "envoyproxy/envoy",
"version": "8e4637d371636ff72986b0b07631d56d199b2859",
"sha256": "36b4ea831e5ed9d9d5144637fae73824cdb5edb82b9e31c4b41ef3e8245fd7d7",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"strip_prefix": "envoy-{version}",
},
"envoy_archive": {
"type": "github_archive",
"repo": "envoyproxy/archive",
"version": "62ea65a996f191cf82f45fc6ff4e8ca6cccd827c",
"sha256": "46a83b26c6a77cbbd5d22be26350104a071c8fdb6041c844cadc7adc61e151a2",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "archive-{version}",
},
"envoy-docs": {
"type": "github_archive",
"repo": "envoyproxy/envoy",
"version": "8e4637d371636ff72986b0b07631d56d199b2859",
"sha256": "36b4ea831e5ed9d9d5144637fae73824cdb5edb82b9e31c4b41ef3e8245fd7d7",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"strip_prefix": "envoy-{version}/docs",
},
"envoy_toolshed": {
"type": "github_archive",
"repo": "envoyproxy/toolshed",
"version": "0.3.32",
"sha256": "c97a787075422f9748ff3cf28eb160b8ef8b17e27c44083205ed6473d3945ae9",
"urls": ["https://github.com/{repo}/releases/download/bazel-v{version}/toolshed-bazel-v{version}.tar.gz"],
"strip_prefix": "toolshed-bazel-v{version}",
},
}