Commit 6959b3f 1 parent 474e680 commit 6959b3f Copy full SHA for 6959b3f
File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ COREUTILS_VERSIONS = {
51
51
"sha256" : "sha256-9zGLFOMDjUDbraDY/hrE5zFJ0O+QYrvx2wHk3Gw3q/A=" ,
52
52
},
53
53
"darwin_amd64" : {
54
+ # TODO: remove this version_override hack once 0.0.27 is releases and contains a darwin arm binary
55
+ "version_override" : "0.0.23" ,
54
56
"filename" : "coreutils-0.0.23-x86_64-apple-darwin.tar.gz" ,
55
57
"sha256" : "sha256-SswetVAuK/hMK1r9uBvNnKj5JpSgD0bzkbsHTxOabCo=" ,
56
58
},
@@ -176,8 +178,11 @@ def _coreutils_platform_repo_impl(rctx):
176
178
is_windows = rctx .attr .platform .startswith ("windows_" )
177
179
platform = rctx .attr .platform
178
180
filename = COREUTILS_VERSIONS [rctx .attr .version ][platform ]["filename" ]
181
+ version = rctx .attr .version
182
+ if "version_override" in COREUTILS_VERSIONS [rctx .attr .version ][platform ]:
183
+ version = COREUTILS_VERSIONS [rctx .attr .version ][platform ]["version_override" ]
179
184
url = "https://github.com/uutils/coreutils/releases/download/{}/{}" .format (
180
- rctx . attr . version ,
185
+ version ,
181
186
filename ,
182
187
)
183
188
rctx .download_and_extract (
You can’t perform that action at this time.
0 commit comments