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)

colin 98804884 c522de6e

+5 -5
+5 -5
pkgs/applications/blockchains/zecwallet-lite/default.nix
··· 2 2 3 3 appimageTools.wrapType2 rec { 4 4 pname = "zecwallet-lite"; 5 - version = "1.7.13"; 5 + version = "1.8.8"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/adityapk00/zecwallet-lite/releases/download/v${version}/Zecwallet.Lite-${version}.AppImage"; 9 - hash = "sha256-uBiLGHBgm0vurfvOJjJ+RqVoGnVccEHTFO2T7LDqUzU="; 9 + hash = "sha256-6jppP3V7R8tCR5Wv5UWfbWKkAdsgrCjSiO/bbpLNcw4="; 10 10 }; 11 11 12 12 extraInstallCommands = ··· 14 14 in '' 15 15 mv $out/bin/${pname}-${version} $out/bin/${pname} 16 16 17 - install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications 18 - substituteInPlace $out/share/applications/${pname}.desktop \ 19 - --replace 'Exec=AppRun' 'Exec=${pname}' 17 + install -m 444 -D ${contents}/zecwallet-lite.desktop -t $out/share/applications 18 + substituteInPlace $out/share/applications/zecwallet-lite.desktop \ 19 + --replace 'Exec=AppRun' "Exec=$out/bin/zecwallet-lite" 20 20 cp -r ${contents}/usr/share/icons $out/share 21 21 ''; 22 22