summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-06-11 09:38:54 +0200
committerGitHub <noreply@github.com>2021-06-11 09:38:54 +0200
commit623f204f07455b9c71efeaf6967787ab767ad231 (patch)
treecd44442dfbea29cfba39a1e02666980023a5d4a7 /pkgs/applications
parenta00f2947b96743fdc48dfa5f31c9f3233e83db2f (diff)
parent3737a26a1812f215d6ba05d6728e31f34184dda3 (diff)
downloadnixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar.gz
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar.bz2
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar.lz
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar.xz
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.tar.zst
nixpkgs-623f204f07455b9c71efeaf6967787ab767ad231.zip
Merge pull request #126565 from TredwellGit/trezor-suite
trezor-suite: 21.5.1 -> 21.6.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/blockchains/trezor-suite/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/blockchains/trezor-suite/default.nix b/pkgs/applications/blockchains/trezor-suite/default.nix
index 585f01290bb..bd9e26ae73a 100644
--- a/pkgs/applications/blockchains/trezor-suite/default.nix
+++ b/pkgs/applications/blockchains/trezor-suite/default.nix
@@ -8,7 +8,7 @@
 
 let
   pname = "trezor-suite";
-  version = "21.5.1";
+  version = "21.6.1";
   name = "${pname}-${version}";
 
   suffix = {
@@ -20,8 +20,8 @@ let
     url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
     # sha512 hashes are obtained from latest-linux-arm64.yml and latest-linux.yml
     sha512 = {
-      aarch64-linux = "sha512-nqwfonWySc+wBSJjC8BW9vm+v5zHbKqbbrTTRmoZdEYBJg2SthMtTULNLVpXaX9NHxr6guZnOWdBlzVk2dQkfQ==";
-      x86_64-linux  = "sha512-tfvdNXsjMe8YXJwTuujz4tKTdfsCuR/9VECF8EkcRP95YM7vuDV8dumru1jKtdiv0gaS1GT3SPEeAfmczY5jGg==";
+      aarch64-linux = "sha512-IxWiOJEk2PHdKf4QPHH9Y5rdyhKF3aQCHJe1crS4sYrE+4BLj3rFwRPIIGhJLqzqPyW24Hw/A4lnRnDd/UpsNA==";
+      x86_64-linux  = "sha512-pSJ+4y9v1ltXun3F4UyQoSTJdaFSelIHx49DBbd180MSbpETecVa7OFadKjlSUKD1sknNXG9MDb2hv7SRNdDYw==";
     }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   };
 
@@ -57,6 +57,7 @@ appimageTools.wrapType2 rec {
   meta = with lib; {
     description = "Trezor Suite - Desktop App for managing crypto";
     homepage = "https://suite.trezor.io";
+    changelog = "https://github.com/trezor/trezor-suite/releases/tag/v${version}";
     license = licenses.unfree;
     maintainers = with maintainers; [ prusnak ];
     platforms = [ "aarch64-linux" "x86_64-linux" ];