trezor-suite: 21.2.2 -> 21.4.1

This commit is contained in:
Pavol Rusnak 2021-04-14 16:22:26 +02:00
parent 4c87cb87a2
commit c3cc679171
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, fetchurl , fetchurl
, appimageTools , appimageTools
, tor , tor
@ -7,12 +8,20 @@
let let
pname = "trezor-suite"; pname = "trezor-suite";
version = "21.2.2"; version = "21.4.1";
name = "${pname}-${version}"; 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 { src = fetchurl {
url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-linux-x86_64.AppImage"; url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
sha256 = "0dj3azx9jvxchrpm02w6nkcis6wlnc6df04z7xc6f66fwn6r3kkw"; sha256 = {
aarch64-linux = "51ea8a5210f008d13a729ac42085563b5e8b971b17ed766f84d69d76dcb2db0c";
x86_64-linux = "9219168a504356152b3b807e1e7282e21952461d277596c6b82ddfe81ac2419c";
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
}; };
appimageContents = appimageTools.extractType2 { appimageContents = appimageTools.extractType2 {
@ -48,6 +57,6 @@ appimageTools.wrapType2 rec {
homepage = "https://suite.trezor.io"; homepage = "https://suite.trezor.io";
license = licenses.unfree; license = licenses.unfree;
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak ];
platforms = [ "x86_64-linux" ]; platforms = [ "aarch64-linux" "x86_64-linux" ];
}; };
} }