simplex-chat-desktop: 5.4.2 -> 5.4.4
also add updateScript (depends on #280492)
This commit is contained in:
parent
eabe8d3efa
commit
dbd66e11cc
1 changed files with 10 additions and 2 deletions
|
@ -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 = "-";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue