Godot Engine icon

Godot Engine 4.6.3

2D and 3D game engine

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    godot # Godot Engine
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    godot # Godot Engine
  ];
}

Package Definition

{
  "pname": "godot",
  "version": "4.6.3",
  "src": {
    "url": "https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_macos.universal.zip",
    "sha256": "30630f3e9b11e10b35c1f90ba8814185dcec43fae1a48345159be7552c64bfe8"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Godot.app\" && cp -r \"Godot.app\" \"$out/Applications\"",
    "mkdir -p \"$out/bin\" && ln -s \"$out/Applications/Godot.app/Contents/MacOS/Godot\" \"$out/bin/godot\""
  ],
  "meta": {
    "description": "2D and 3D game engine",
    "homepage": "https://godotengine.org/"
  }
}