From 98804884afd3e4c4e1a1a797717561d952151e2f Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 27 Sep 2022 19:45:36 -0700 Subject: [PATCH] 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) --- .../blockchains/zecwallet-lite/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/blockchains/zecwallet-lite/default.nix b/pkgs/applications/blockchains/zecwallet-lite/default.nix index 2a15d2fa9233..e3aad8cb0c5f 100644 --- a/pkgs/applications/blockchains/zecwallet-lite/default.nix +++ b/pkgs/applications/blockchains/zecwallet-lite/default.nix @@ -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 '';