Merge pull request #246944 from NixOS/hedgedoc/add-meta-mainProgram

hedgedoc: add `meta.mainProgram`
This commit is contained in:
Pol Dellaiera 2023-08-03 13:33:07 +02:00 committed by GitHub
commit 27b226cdd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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