go: fix bootstrapping on 32-bit ARM

On 32-bit ARM, the wrong name was used for the prebuilt bootstrap tarball,
causing an eval failure.
This commit is contained in:
Ben Wolsieffer 2021-03-02 19:51:05 -05:00 committed by zowoq
parent 5a41d0d5a0
commit 8178d877ac

View File

@ -8,8 +8,8 @@ let
"i686" = "386";
"x86_64" = "amd64";
"aarch64" = "arm64";
"armv6l" = "arm";
"armv7l" = "arm";
"armv6l" = "armv6l";
"armv7l" = "armv6l";
"powerpc64le" = "ppc64le";
}.${platform.parsed.cpu.name} or (throw "Unsupported CPU ${platform.parsed.cpu.name}");