-
Notifications
You must be signed in to change notification settings - Fork 160
/
versions.bzl
41 lines (41 loc) · 1.75 KB
/
versions.bzl
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
VERSIONS = {
# This should match the version in `.ruby-version`
# It must also be availble, and preferably the default here:
# https://github.com/netlify/build-image/blob/focal/included_software.md
"python": "3.10",
"com_github_twbs_bootstrap": {
"type": "github_archive",
"repo": "twbs/bootstrap",
"version": "5.1.3",
"sha256": "55b951db46e1d69b4236494122fe559716a76c4b8a418c11f3fed6abc2d4de3f",
"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": "a0c96b389d2ef44ff207bb17678a5c5eabdbbadb",
"sha256": "4ba98bd310262f0ad3c6aeae63850715bf70e5719307fef240565dfbf4d5708b",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"strip_prefix": "envoy-{version}",
},
"envoy_archive": {
"type": "github_archive",
"repo": "envoyproxy/archive",
"version": "8977401fdb023ebdaa02bd8a9358a3892429bbb7",
"sha256": "21a1beacaae4ea61e7e039e3497016707c4f149d4b7ba0532b3fb9fe2ff17b82",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "archive-{version}",
},
"envoy_toolshed": {
"type": "github_archive",
"repo": "envoyproxy/toolshed",
"version": "0.2.2",
"sha256": "443fe177aba0cef8c17b7a48905c925c67b09005b10dd70ff12cd9f729a72d51",
"urls": ["https://github.com/{repo}/archive/bazel-v{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "toolshed-bazel-v{version}/bazel",
},
}