@@ -8,21 +8,15 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
8
8
def bazoku_deps ():
9
9
http_archive (
10
10
name = "heroku_darwin" ,
11
- # TODO: we need to pin to a version, otherwise the sha would fail eventually..
12
- # can't find pinned versions hosted anywhere, need to ask around.
13
- # that's why the SHA is commented out..
14
- # sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68",
15
- urls = [ "https://cli-assets.heroku.com/heroku-darwin-x64.tar.gz" ],
11
+ sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68" ,
12
+ urls = [ "https://github.com/salesforce/bazoku/releases/download/v0.1.0/heroku-7.60.2-darwin-x64.tar.gz" ],
16
13
build_file_content = """exports_files(glob(["**/*"]))""" ,
17
14
)
18
15
19
16
http_archive (
20
17
name = "heroku_linux" ,
21
- # TODO: we need to pin to a version, otherwise the sha would fail eventually..
22
- # can't find pinned versions hosted anywhere, need to ask around.
23
- # that's why the SHA is commented out..
24
- # sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68",
25
- urls = [ "https://cli-assets.heroku.com/heroku-linux-x64.tar.gz" ],
18
+ sha256 = "f9259fee83378afc708e9d0b8d8b2b4602bed2240453338a59e53a0abb5df25f" ,
19
+ urls = [ "https://github.com/salesforce/bazoku/releases/download/v0.1.0/heroku-7.60.2-linux-x64.tar.gz" ],
26
20
build_file_content = """exports_files(glob(["**/*"]))""" ,
27
21
)
28
22
0 commit comments