mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
22 lines
590 B
Nix
22 lines
590 B
Nix
{ lib
|
|
, fetchurl
|
|
, appimageTools
|
|
}:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "session-desktop-appimage";
|
|
version = "1.7.6";
|
|
src = fetchurl {
|
|
url = "https://github.com/oxen-io/session-desktop/releases/download/v${version}/session-desktop-linux-x86_64-${version}.AppImage";
|
|
sha256 = "PNjUslqLcSxkRSXFpesBr2sfre4wetZWfUQTjywdClU=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Onion routing based messenger";
|
|
homepage = "https://getsession.org/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ alexnortung ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|