nixpkgs/pkgs/applications/blockchains/trezor-suite/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2.4 KiB
Nix
Raw Normal View History

2021-02-12 16:26:21 +00:00
{ lib
2021-04-14 14:22:26 +00:00
, stdenv
2021-02-12 16:26:21 +00:00
, fetchurl
, appimageTools
, tor
, trezord
}:
let
pname = "trezor-suite";
2024-06-28 11:48:43 +00:00
version = "24.6.2";
2021-02-12 16:26:21 +00:00
name = "${pname}-${version}";
2021-04-14 14:22:26 +00:00
suffix = {
aarch64-linux = "linux-arm64";
x86_64-linux = "linux-x86_64";
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
2021-02-12 16:26:21 +00:00
src = fetchurl {
2021-04-14 14:22:26 +00:00
url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage";
2024-06-28 11:48:43 +00:00
hash = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/download/v${version}/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/'
aarch64-linux = "sha512-fJnka//9DbvTTq7GEN++6thU8f8BL4cHh1J4P/Tu9Eu94KWCHDG2IwFALOXEvZnwLbxFYiu3Cqldp2RIxYFXTA==";
x86_64-linux = "sha512-/gRQR1EriiwrDj04BTnhXlsawJgHp6TqgHpgVCMO1r+U2zGiFLdNfwG/SYwARE+55X8Umls5hCt/wuCpTEPkEg==";
2021-04-14 14:22:26 +00:00
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
2021-02-12 16:26:21 +00:00
};
appimageContents = appimageTools.extractType2 {
inherit name src;
};
in
appimageTools.wrapType2 rec {
inherit name src;
extraInstallCommands = ''
mv $out/bin/${name} $out/bin/${pname}
mkdir -p $out/bin $out/share/${pname} $out/share/${pname}/resources
cp -a ${appimageContents}/locales/ $out/share/${pname}
cp -a ${appimageContents}/resources/app*.* $out/share/${pname}/resources
cp -a ${appimageContents}/resources/images/ $out/share/${pname}/resources
install -m 444 -D ${appimageContents}/${pname}.desktop $out/share/applications/${pname}.desktop
2022-11-11 17:38:38 +00:00
install -m 444 -D ${appimageContents}/resources/images/desktop/512x512.png $out/share/icons/hicolor/512x512/apps/${pname}.png
substituteInPlace $out/share/applications/${pname}.desktop \
2021-06-30 13:04:59 +00:00
--replace 'Exec=AppRun --no-sandbox %U' 'Exec=${pname}'
2021-02-12 16:26:21 +00:00
# symlink system binaries instead bundled ones
mkdir -p $out/share/${pname}/resources/bin/{bridge,tor}
ln -sf ${trezord}/bin/trezord-go $out/share/${pname}/resources/bin/bridge/trezord
ln -sf ${tor}/bin/tor $out/share/${pname}/resources/bin/tor/tor
'';
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}";
2021-02-12 16:26:21 +00:00
license = licenses.unfree;
maintainers = with maintainers; [ prusnak ];
2021-04-14 14:22:26 +00:00
platforms = [ "aarch64-linux" "x86_64-linux" ];
2023-11-27 01:17:53 +00:00
mainProgram = "trezor-suite";
2021-02-12 16:26:21 +00:00
};
}