summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2021-04-29 22:02:07 +0800
committerGitHub <noreply@github.com>2021-04-29 22:02:07 +0800
commit1247a390c04e1e193e879f4453720cc88062293a (patch)
tree09c8298f8befe00ffc64642b1399613b701718b4 /pkgs/applications/blockchains
parent25bbad9616537c66634819101203468be5d7ac3c (diff)
parentc3cc679171a578eb64da2577e521d5078e4bdbc7 (diff)
downloadnixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar.gz
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar.bz2
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar.lz
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar.xz
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.tar.zst
nixpkgs-1247a390c04e1e193e879f4453720cc88062293a.zip
Merge pull request #120898 from prusnak/trezor-suite
trezor-suite: 21.2.2 -> 21.4.1
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/trezor-suite/default.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/pkgs/applications/blockchains/trezor-suite/default.nix b/pkgs/applications/blockchains/trezor-suite/default.nix
index 68b83aff88d..2f5e6ac0104 100644
--- a/pkgs/applications/blockchains/trezor-suite/default.nix
+++ b/pkgs/applications/blockchains/trezor-suite/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , fetchurl
 , appimageTools
 , tor
@@ -7,12 +8,20 @@
 
 let
   pname = "trezor-suite";
-  version = "21.2.2";
+  version = "21.4.1";
   name = "${pname}-${version}";
 
+  suffix = {
+    aarch64-linux = "linux-arm64";
+    x86_64-linux  = "linux-x86_64";
+  }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+
   src = fetchurl {
-    url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-linux-x86_64.AppImage";
-    sha256 = "0dj3azx9jvxchrpm02w6nkcis6wlnc6df04z7xc6f66fwn6r3kkw";
+    url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
+    sha256 = {
+      aarch64-linux = "51ea8a5210f008d13a729ac42085563b5e8b971b17ed766f84d69d76dcb2db0c";
+      x86_64-linux  = "9219168a504356152b3b807e1e7282e21952461d277596c6b82ddfe81ac2419c";
+    }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   };
 
   appimageContents = appimageTools.extractType2 {
@@ -49,6 +58,6 @@ appimageTools.wrapType2 rec {
     homepage = "https://suite.trezor.io";
     license = licenses.unfree;
     maintainers = with maintainers; [ prusnak ];
-    platforms = [ "x86_64-linux" ];
+    platforms = [ "aarch64-linux" "x86_64-linux" ];
   };
 }