hedgedoc: add `meta.mainProgram`

Follow up of https://github.com/NixOS/nixpkgs/pull/246386

+5 -4
+5 -4
pkgs/servers/web-apps/hedgedoc/default.nix
··· 99 99 tests = { inherit (nixosTests) hedgedoc; }; 100 100 }; 101 101 102 - meta = with lib; { 102 + meta = { 103 103 description = "Realtime collaborative markdown notes on all platforms"; 104 - license = licenses.agpl3; 104 + license = lib.licenses.agpl3; 105 105 homepage = "https://hedgedoc.org"; 106 - maintainers = with maintainers; [ SuperSandro2000 ]; 107 - platforms = platforms.linux; 106 + mainProgram = "hedgedoc"; 107 + maintainers = with lib.maintainers; [ SuperSandro2000 ]; 108 + platforms = lib.platforms.linux; 108 109 }; 109 110 }