From e72c8cfba571533332b0c0d21fc98795180dc9ee Mon Sep 17 00:00:00 2001 From: Steve Dodd Date: Sun, 16 Jun 2024 20:05:38 +0100 Subject: [PATCH] foundation/stage0: fix hex0 hashes for amd64 & arm64 --- foundation/src/stages/stage0/phases/phase00.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundation/src/stages/stage0/phases/phase00.nix b/foundation/src/stages/stage0/phases/phase00.nix index effb534..8861c64 100644 --- a/foundation/src/stages/stage0/phases/phase00.nix +++ b/foundation/src/stages/stage0/phases/phase00.nix @@ -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 -- 2.45.2