about summary refs log tree commit diff
path: root/pkgs/by-name/go/godot_4-export-templates/package.nix
blob: be1240737649a06201d15e50d9325126e6c16b07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Export templates is necessary for setting up Godot engine, it's used when exporting projects.
# Godot applications/games packages needs to reference export templates.
# Export templates version should be kept in sync with Godot version.
# https://docs.godotengine.org/en/stable/tutorials/export/exporting_projects.html#export-templates

{ fetchzip, godot_4, ... }:

fetchzip {
  pname = "export_templates";
  extension = "zip";
  url = "https://github.com/godotengine/godot/releases/download/${godot_4.version}/Godot_v${godot_4.version}_export_templates.tpz";
  hash = "sha256-eomGLH9lbZhl7VtHTWjJ5mxVt0Yg8LfnAnpqoCksPgs=";
}