Merge pull request #280495 from jbgi/simplex-chat-543

simplex-chat-desktop: 5.4.2 -> 5.4.4
This commit is contained in:
Weijia Wang 2024-02-04 23:16:58 +01:00 committed by GitHub
commit a7d7e65d24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,16 @@
{ lib
, appimageTools
, fetchurl
, gitUpdater
}:
let
pname = "simplex-chat-desktop";
version = "5.4.2";
version = "5.4.4";
src = fetchurl {
url = "https://github.com/simplex-chat/simplex-chat/releases/download/v${version}/simplex-desktop-x86_64.AppImage";
hash = "sha256-t9wFOKGmy/mGFtETv1EkturAM4Swq1q/zoegpQ7dcrc=";
hash = "sha256-f4P31e099bKBKsavP5f+xBGsqQfM6CYgUtUIOLe+cAE=";
};
appimageContents = appimageTools.extract {
@ -43,4 +44,11 @@ in appimageTools.wrapType2 {
maintainers = with maintainers; [ yuu ];
platforms = [ "x86_64-linux" ];
};
passthru.updateScript = gitUpdater {
url = "https://github.com/simplex-chat/simplex-chat";
rev-prefix = "v";
# skip tags that does not correspond to official releases, like vX.Y.Z-(beta,fdroid,armv7a).
ignoredVersions = "-";
};
}