zecwallet-lite: 1.7.13 -> 1.8.8

also fix the .desktop file to reference zecwallet-lite by fully-qualified path.

abbrieviated change-log:
- sync improvements (save sync progress; faster syncs)
- full support for Orchard transactions
- full support for Orchard pool
- experimental support for Zebra-backed LightwalletD
- add spam filtering options

complete release notes
[here](https://github.com/adityapk00/zecwallet-lite/releases)
This commit is contained in:
colin 2022-09-27 19:45:36 -07:00
parent c522de6ebe
commit 98804884af

View File

@ -2,11 +2,11 @@
appimageTools.wrapType2 rec {
pname = "zecwallet-lite";
version = "1.7.13";
version = "1.8.8";
src = fetchurl {
url = "https://github.com/adityapk00/zecwallet-lite/releases/download/v${version}/Zecwallet.Lite-${version}.AppImage";
hash = "sha256-uBiLGHBgm0vurfvOJjJ+RqVoGnVccEHTFO2T7LDqUzU=";
hash = "sha256-6jppP3V7R8tCR5Wv5UWfbWKkAdsgrCjSiO/bbpLNcw4=";
};
extraInstallCommands =
@ -14,9 +14,9 @@ appimageTools.wrapType2 rec {
in ''
mv $out/bin/${pname}-${version} $out/bin/${pname}
install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
install -m 444 -D ${contents}/zecwallet-lite.desktop -t $out/share/applications
substituteInPlace $out/share/applications/zecwallet-lite.desktop \
--replace 'Exec=AppRun' "Exec=$out/bin/zecwallet-lite"
cp -r ${contents}/usr/share/icons $out/share
'';