From 411a5246c0d8e2c1399b4ea6b50413ce81b5fdbd Mon Sep 17 00:00:00 2001 From: DavHau Date: Wed, 11 Aug 2021 15:39:50 +0200 Subject: [PATCH] cryptpad: add meta longDescription and mainProgram --- pkgs/servers/web-apps/cryptpad/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/web-apps/cryptpad/default.nix b/pkgs/servers/web-apps/cryptpad/default.nix index 3cb15c1e9765..4e8daf38453c 100644 --- a/pkgs/servers/web-apps/cryptpad/default.nix +++ b/pkgs/servers/web-apps/cryptpad/default.nix @@ -75,7 +75,15 @@ let chmod +x $out/bin/cryptpad ''; - meta.maintainers = with lib.maintainers; [ davhau ]; + meta = { + longDescription = '' + CryptPad is a collaboration suite that is end-to-end-encrypted and open-source. + It is built to enable collaboration, synchronizing changes to documents in real time. + Because all data is encrypted, the service and its administrators have no way of seeing the content being edited and stored. + ''; + maintainers = with lib.maintainers; [ davhau ]; + mainProgram = "cryptpad"; + }; }; in