summary refs log blame commit diff
path: root/pkgs/development/tools/godot/headless.nix
blob: a8d640eba1aa81f639138ec31e62e28062fabf7f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
               














                                                                  
                                                             
  
{ godot, lib }:
godot.overrideAttrs (oldAttrs: rec {
  pname = "godot-headless";
  sconsFlags = "target=release_debug platform=server tools=yes";
  installPhase = ''
    mkdir -p "$out/bin"
    cp bin/godot_server.* $out/bin/godot-headless

    mkdir "$dev"
    cp -r modules/gdnative/include $dev

    mkdir -p "$man/share/man/man6"
    cp misc/dist/linux/godot.6 "$man/share/man/man6/"
  '';
  meta.description =
    "Free and Open Source 2D and 3D game engine (headless build)";
  meta.maintainers = with lib.maintainers; [ twey yusdacra ];
})