forked from auxolotl/labs
foundation/stage0: fix hex0 hashes for amd64 & arm64 (#2)
I must confess to not understanding quite how all this works, but this seems to solve the problem of aarch64 fetching the x86-64 binary and vice-versa. Reviewed-on: auxolotl/labs#2 Reviewed-by: Jake Hamilton <jake.hamilton@hey.com> Co-authored-by: Steve Dodd <steved424@gmail.com> Co-committed-by: Steve Dodd <steved424@gmail.com>
This commit is contained in:
parent
9850da8aa9
commit
8e9cb4fbe9
|
@ -86,9 +86,9 @@ in {
|
|||
|
||||
hash = lib.modules.overrides.default (
|
||||
if system == "x86_64-linux"
|
||||
then "sha256-XTPsoKeI6wTZAF0UwEJPzuHelWOJe//wXg4HYO0dEJo="
|
||||
else if system == "aarch64-linux"
|
||||
then "sha256-RCgK9oZRDQUiWLVkcIBSR2HeoB+Bh0czthrpjFEkCaY="
|
||||
else if system == "aarch64-linux"
|
||||
then "sha256-XTPsoKeI6wTZAF0UwEJPzuHelWOJe//wXg4HYO0dEJo="
|
||||
else if system == "i686-linux"
|
||||
then "sha256-QU3RPGy51W7M2xnfFY1IqruKzusrSLU+L190ztN6JW8="
|
||||
else null
|
||||
|
|
Loading…
Reference in a new issue