simplex-chat-desktop: 5.4.2 -> 5.4.4

also add updateScript (depends on #280492)
This commit is contained in:
Jean-Baptiste Giraudeau 2024-01-12 10:15:15 +01:00
parent eabe8d3efa
commit dbd66e11cc
No known key found for this signature in database
GPG Key ID: 7CEF8C9CC2D9933B

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 = "-";
};
}