2021-08-30 19:43:53 +00:00
|
|
|
{ lib
|
|
|
|
, fetchurl
|
|
|
|
, appimageTools
|
|
|
|
}:
|
|
|
|
|
2021-12-20 20:47:59 +00:00
|
|
|
appimageTools.wrapType2 rec {
|
|
|
|
pname = "session-desktop-appimage";
|
2021-12-20 20:51:30 +00:00
|
|
|
version = "1.7.6";
|
2021-08-30 19:43:53 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/oxen-io/session-desktop/releases/download/v${version}/session-desktop-linux-x86_64-${version}.AppImage";
|
2021-12-20 20:51:30 +00:00
|
|
|
sha256 = "PNjUslqLcSxkRSXFpesBr2sfre4wetZWfUQTjywdClU=";
|
2021-08-30 19:43:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Onion routing based messenger";
|
|
|
|
homepage = "https://getsession.org/";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ alexnortung ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|