mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
6bc106b604
https://github.com/trezor/trezor-suite/releases/tag/v21.6.2 https://github.com/trezor/trezor-suite/releases/tag/v21.7.1
66 lines
2.4 KiB
Nix
66 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, appimageTools
|
|
, tor
|
|
, trezord
|
|
}:
|
|
|
|
let
|
|
pname = "trezor-suite";
|
|
version = "21.7.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}-${suffix}.AppImage";
|
|
# sha512 hashes are obtained from latest-linux-arm64.yml and latest-linux.yml
|
|
sha512 = {
|
|
aarch64-linux = "sha512-GEu1Zx3IQws8wsVsZUaIKvC0kTe8l/BBPSdu5q44tDpszmPugz8G/8FDAO/Ra50dzyiHhRheybZPuf2BBGGb7A==";
|
|
x86_64-linux = "sha512-ghPbQa/MstzfUOWve1KNwB1t9dxK0+eYunBSoShWKpb85hgK69+ncTmhY8HejT28OkjFnGk6h4PWbrnQetj8MA==";
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
};
|
|
|
|
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
|
|
install -m 444 -D ${appimageContents}/${pname}.png $out/share/icons/hicolor/512x512/apps/${pname}.png
|
|
install -m 444 -D ${appimageContents}/resources/images/icons/512x512.png $out/share/icons/hicolor/512x512/apps/${pname}.png
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun --no-sandbox %U' 'Exec=${pname}'
|
|
|
|
# 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}";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
|
};
|
|
}
|