From bb1faddf074ac3b83a9650de139a3cb3c55a5ffa Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 3 Aug 2023 11:54:32 +0200 Subject: [PATCH] hedgedoc: add `meta.mainProgram` Follow up of https://github.com/NixOS/nixpkgs/pull/246386 --- pkgs/servers/web-apps/hedgedoc/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/web-apps/hedgedoc/default.nix b/pkgs/servers/web-apps/hedgedoc/default.nix index db2af919a02b..0f2073f24a6f 100644 --- a/pkgs/servers/web-apps/hedgedoc/default.nix +++ b/pkgs/servers/web-apps/hedgedoc/default.nix @@ -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; }; }