godot_4: refactor nested with

This commit is contained in:
superherointj 2024-04-18 16:31:05 -03:00
parent e53463627c
commit 1912515d37
1 changed files with 3 additions and 3 deletions

View File

@ -146,12 +146,12 @@ stdenv.mkDerivation rec {
cp icon.png "$out/share/icons/godot.png"
'';
meta = with lib; {
meta = {
homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine";
license = licenses.mit;
license = lib.licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
maintainers = with maintainers; [ shiryel ];
maintainers = with lib.maintainers; [ shiryel ];
mainProgram = "godot4";
};
}