forked from GoogleContainerTools/distroless
-
Notifications
You must be signed in to change notification settings - Fork 1
/
node_archives.bzl
58 lines (52 loc) · 2.29 KB
/
node_archives.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def repositories():
# Node (https://nodejs.org/en/about/releases/)
# Follow Node's maintainence schedule and support all LTS versions that are not end of life
http_archive(
name = "nodejs14_amd64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "ac808106e79f90bbb0ceb44c5c9c57306117f21d962f0ca54a58993266c514dc",
strip_prefix = "node-v14.21.0-linux-x64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v14.21.0/node-v14.21.0-linux-x64.tar.gz"],
)
http_archive(
name = "nodejs16_amd64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "faca6476cb5b41aa995370fd856d16fcfbbef5c18718a6fa44cc1bae4140849d",
strip_prefix = "node-v16.18.0-linux-x64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v16.18.0/node-v16.18.0-linux-x64.tar.gz"],
)
http_archive(
name = "nodejs18_amd64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "0699c8e02581a9c312d7157331561d36ef23963766eb47daa702edb6fd6735bd",
strip_prefix = "node-v18.12.0-linux-x64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v18.12.0/node-v18.12.0-linux-x64.tar.gz"],
)
http_archive(
name = "nodejs14_arm64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "a06df30ae4393296872f2a80e73f2eea0634c3490edccb2d80bdee5f1449e96f",
strip_prefix = "node-v14.21.0-linux-arm64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v14.21.0/node-v14.21.0-linux-arm64.tar.gz"],
)
http_archive(
name = "nodejs16_arm64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "7d495b6e26d26dd3dba64b567383f843f3d6211810182a22973fb83c32b5920b",
strip_prefix = "node-v16.18.0-linux-arm64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v16.18.0/node-v16.18.0-linux-arm64.tar.gz"],
)
http_archive(
name = "nodejs18_arm64",
build_file = "//nodejs:BUILD.nodejs",
sha256 = "9bb70b30b9d34f2b859cfef73ec3134537408dbf7806d45f104bc1e1d3c832e9",
strip_prefix = "node-v18.12.0-linux-arm64/",
type = "tar.gz",
urls = ["https://nodejs.org/dist/v18.12.0/node-v18.12.0-linux-arm64.tar.gz"],
)