2021-05-30 04:17:22 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, scons, pkg-config, udev, libX11
|
|
|
|
, libXcursor , libXinerama, libXrandr, libXrender, libpulseaudio
|
|
|
|
, libXi, libXext, libXfixes, freetype, openssl
|
2021-06-10 04:57:09 +02:00
|
|
|
, alsa-lib, libGLU, zlib, yasm
|
2021-05-30 04:17:22 +02:00
|
|
|
, withUdev ? true
|
|
|
|
}:
|
2018-02-14 18:42:48 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
options = {
|
|
|
|
touch = libXi != null;
|
|
|
|
pulseaudio = false;
|
2021-05-30 04:17:22 +02:00
|
|
|
udev = withUdev;
|
2018-02-14 18:42:48 +01:00
|
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "godot";
|
2021-09-26 20:20:07 +02:00
|
|
|
version = "3.3.3";
|
2017-01-05 20:44:25 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "godotengine";
|
|
|
|
repo = "godot";
|
2017-11-13 10:08:44 +01:00
|
|
|
rev = "${version}-stable";
|
2021-09-26 20:20:07 +02:00
|
|
|
sha256 = "0bkng0iwsfawxk8bxlq01ib4n6kaxjkbwcif1bhpvw5ra19430rg";
|
2017-01-05 20:44:25 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-01-05 20:44:25 +01:00
|
|
|
buildInputs = [
|
2021-05-30 04:17:22 +02:00
|
|
|
scons udev libX11 libXcursor libXinerama libXrandr libXrender
|
2021-06-10 04:57:09 +02:00
|
|
|
libXi libXext libXfixes freetype openssl alsa-lib libpulseaudio
|
2018-02-21 13:23:11 +01:00
|
|
|
libGLU zlib yasm
|
2017-01-05 20:44:25 +01:00
|
|
|
];
|
|
|
|
|
2018-02-21 13:23:11 +01:00
|
|
|
patches = [
|
|
|
|
./pkg_config_additions.patch
|
|
|
|
./dont_clobber_environment.patch
|
|
|
|
];
|
2017-01-05 20:44:25 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-11-12 03:52:07 +01:00
|
|
|
sconsFlags = "target=release_debug platform=x11";
|
|
|
|
preConfigure = ''
|
|
|
|
sconsFlags+=" ${lib.concatStringsSep " " (lib.mapAttrsToList (k: v: "${k}=${builtins.toJSON v}") options)}"
|
2017-01-05 20:44:25 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-28 13:43:07 +02:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2017-01-05 20:44:25 +01:00
|
|
|
installPhase = ''
|
2018-03-28 13:43:07 +02:00
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp bin/godot.* $out/bin/godot
|
2018-04-05 01:14:40 +02:00
|
|
|
|
2018-03-28 13:43:07 +02:00
|
|
|
mkdir "$dev"
|
|
|
|
cp -r modules/gdnative/include $dev
|
|
|
|
|
|
|
|
mkdir -p "$man/share/man/man6"
|
|
|
|
cp misc/dist/linux/godot.6 "$man/share/man/man6/"
|
2018-04-05 01:14:40 +02:00
|
|
|
|
2018-03-28 13:43:07 +02:00
|
|
|
mkdir -p "$out"/share/{applications,icons/hicolor/scalable/apps}
|
2019-03-21 11:08:54 +01:00
|
|
|
cp misc/dist/linux/org.godotengine.Godot.desktop "$out/share/applications/"
|
2018-04-05 01:14:40 +02:00
|
|
|
cp icon.svg "$out/share/icons/hicolor/scalable/apps/godot.svg"
|
|
|
|
cp icon.png "$out/share/icons/godot.png"
|
2019-03-21 11:08:54 +01:00
|
|
|
substituteInPlace "$out/share/applications/org.godotengine.Godot.desktop" \
|
2018-03-28 13:43:07 +02:00
|
|
|
--replace "Exec=godot" "Exec=$out/bin/godot"
|
2017-01-05 20:44:25 +01:00
|
|
|
'';
|
|
|
|
|
2021-04-14 22:10:20 +02:00
|
|
|
meta = with lib; {
|
2017-08-17 22:13:32 +02:00
|
|
|
homepage = "https://godotengine.org";
|
2017-01-05 20:44:25 +01:00
|
|
|
description = "Free and Open Source 2D and 3D game engine";
|
2021-04-14 22:10:20 +02:00
|
|
|
license = licenses.mit;
|
2018-03-18 16:57:57 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2021-04-14 22:10:20 +02:00
|
|
|
maintainers = with maintainers; [ twey ];
|
2017-01-05 20:44:25 +01:00
|
|
|
};
|
|
|
|
}
|