hedgedoc: add meta.mainProgram

Follow up of https://github.com/NixOS/nixpkgs/pull/246386
This commit is contained in:
Pol Dellaiera 2023-08-03 11:54:32 +02:00
parent d85f641287
commit bb1faddf07

View File

@ -99,11 +99,12 @@ in stdenv.mkDerivation {
tests = { inherit (nixosTests) hedgedoc; };
};
meta = with lib; {
meta = {
description = "Realtime collaborative markdown notes on all platforms";
license = licenses.agpl3;
license = lib.licenses.agpl3;
homepage = "https://hedgedoc.org";
maintainers = with maintainers; [ SuperSandro2000 ];
platforms = platforms.linux;
mainProgram = "hedgedoc";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
platforms = lib.platforms.linux;
};
}