summary refs log tree commit diff
path: root/pkgs/applications/blockchains/trezor-suite/default.nix
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2023-09-16 17:33:20 +0000
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-09-22 18:37:42 +0200
commitfab52fca51de6d49084d9b41d0a69b8108ebc668 (patch)
tree5aa5f341c6987d9f492ab8740855f52c3f8329de /pkgs/applications/blockchains/trezor-suite/default.nix
parenta6530e859b50c2881bef1008d8bb41a6abf12eb7 (diff)
downloadnixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar.gz
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar.bz2
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar.lz
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar.xz
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.tar.zst
nixpkgs-fab52fca51de6d49084d9b41d0a69b8108ebc668.zip
treewide: sha512 → hash
Diffstat (limited to 'pkgs/applications/blockchains/trezor-suite/default.nix')
-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 67c02e299e1..c56e6da52f0 100644
--- a/pkgs/applications/blockchains/trezor-suite/default.nix
+++ b/pkgs/applications/blockchains/trezor-suite/default.nix
@@ -18,7 +18,7 @@ let
 
   src = fetchurl {
     url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
-    sha512 = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/'
+    hash = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/'
       aarch64-linux = "sha512-+dcogzj0mENWSAVKqUG/xyF+TD/nKpA3UiNyI2M7iiCaW+tpwO5Y0uUmzb1rFRtDsKMflDPZNWe8qMJmrtaIrA==";
       x86_64-linux  = "sha512-8UyPa3hDmALiYGao451ZBQLxv9H9OLbzzHiANp4zgvjBLGNhZnPFBIYM6KGyKkgRJJiTcgd7VHCgEhPpfm0qzg==";
     }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");