solarus-quest-editor: remove with lib; from meta

Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
Marcin Serwin 2025-05-27 18:14:55 +02:00
parent 78fdc691d2
commit 941def2d07
No known key found for this signature in database
GPG key ID: DACFAC4EA0B194E0

View file

@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
glm
];
meta = with lib; {
meta = {
description = "Editor for the Zelda-like ARPG game engine, Solarus";
mainProgram = "solarus-editor";
longDescription = ''
@ -78,9 +78,9 @@ stdenv.mkDerivation rec {
Games can be created easily using the editor.
'';
homepage = "https://www.solarus-games.org";
license = licenses.gpl3;
license = lib.licenses.gpl3;
maintainers = [ ];
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}