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.

68 lines
2.6 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-03-23 22:04:46 +00:00
version = "24.3.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";
2023-09-16 17:33:20 +00:00
hash = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/'
2024-03-23 22:04:46 +00:00
aarch64-linux = "sha512-oj/UrUFTH0QZD2eTHdR/Lu6Tz6AIhbIBgPJD3jH1YJKgOZIzX21H0KSddMgu+iKPw2WmoKf0UP+qqf+yFs/mVQ==";
x86_64-linux = "sha512-RakNuSDKR0neO0IZwTVaARX9tWNDfJwOBFL3teUsNlcrur862I1c6NaaA/RxriujolDRI+wgG0twaUGEXXar5g==";
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; {
# trezor-suite fails to detect a connected hardware wallet
# ref: https://github.com/NixOS/nixpkgs/issues/281975
broken = true;
2021-02-12 16:26:21 +00:00
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
};
}