From 33b6a1720d21da785c1b53430c169fbc19714a4a Mon Sep 17 00:00:00 2001 From: toonn Date: Wed, 17 Jul 2019 00:09:19 +0200 Subject: [PATCH] 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. --- .../wire-desktop/default.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index f2ae27e2c7da..358dc19e60c2 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -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 ]; }; }