about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2024-05-16 23:30:13 +0200
committerGitHub <noreply@github.com>2024-05-16 23:30:13 +0200
commit1de09583aaaf06c3af2520492d19b4be207e0543 (patch)
treec98e3b732a27b9a9b03428bbdb89e0aa952ed5a6
parent7a338b0febc1994ed42ee1aed8c752674abf0632 (diff)
parenta283a84b3caf2e85bae86620b719afaf32bf5a85 (diff)
Merge pull request #312299 from drupol/erratum-pr-312238
trezor-suite: update outdated hash
-rw-r--r--pkgs/applications/blockchains/trezor-suite/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/trezor-suite/default.nix b/pkgs/applications/blockchains/trezor-suite/default.nix
index 17140d41cf019..a718d06c714ac 100644
--- a/pkgs/applications/blockchains/trezor-suite/default.nix
+++ b/pkgs/applications/blockchains/trezor-suite/default.nix
@@ -19,7 +19,7 @@ let
   src = fetchurl {
     url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
     hash = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/'
-      aarch64-linux = "sha512-EPpnEgE9euHGSo7CFMJg7hF3p5LqPc3zPxDQsNzyOI2lNv90vydtEmOm1fORj0MXbQsGLLS1nSzMH3vI6O9WmA==";
+      aarch64-linux = "sha512-U3Az5MtsHup+aNO6lVHeAXRAnNLUbQkL5qMTpYZTaLgiZEFQCUigBJXNPaiUiHA1rJAsFh6wpv20iRMcqRr9gA==";
       x86_64-linux  = "sha512-9Gz0T9/GpTEzZDNk8tV7dg4QvQIB4IoEcOLIjrig6kmlaUoPwwoWFuJP0BH5WW2AhOZ+CEWBP6zFD7uw6VVDnA==";
     }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   };