Godot Engine icon

Godot Engine 4.5.1

Game development 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.5.1",
  "src": {
    "url": "https://github.com/godotengine/godot/releases/download/4.5.1-stable/Godot_v4.5.1-stable_macos.universal.zip",
    "sha256": "65c27959d02aaacfc131ec7ecb90179ba8045200cb02982bf2be96d117010b8a"
  },
  "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": "Game development engine",
    "homepage": "https://godotengine.org/"
  }
}