Commit 1912515d authored by superherointj's avatar superherointj
Browse files

godot_4: refactor nested with

parent e5346362
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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";
  };
}