wire-desktop: expand meta

Added a `longDescription` and `downloadPage`. Also added myself to
`maintainers`.

I fixed up the `license` because it's actually GPLv3 *or later*.
Note that terms and conditions apply though I don't feel like they
violate the GPL-ness of the code.
This commit is contained in:
toonn 2019-07-17 00:09:19 +02:00
parent f9b3cf8a4e
commit 33b6a1720d

View file

@ -94,10 +94,22 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
description = "A modern, secure messenger";
description = "A modern, secure messenger for everyone";
longDescription = ''
Wire Personal is a secure, privacy-friendly messenger. It combines useful
and fun features, audited security, and a beautiful, distinct user
interface. It does not require a phone number to register and chat.
* End-to-end encrypted chats, calls, and files
* Crystal clear voice and video calling
* File and screen sharing
* Timed messages and chats
* Synced across your phone, desktop and tablet
'';
homepage = https://wire.com/;
license = licenses.gpl3;
maintainers = with maintainers; [ worldofpeace ];
platforms = [ "x86_64-linux" ];
downloadPage = https://wire.com/download/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ toonn worldofpeace ];
};
}