2018-03-19 15:51:36 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, scons, pkgconfig, libX11, libXcursor
|
2018-02-14 18:42:48 +01:00
|
|
|
, libXinerama, libXrandr, libXrender, libpulseaudio ? null
|
|
|
|
, libXi ? null, libXext, libXfixes, freetype, openssl
|
|
|
|
, alsaLib, libGLU, zlib, yasm ? null }:
|
|
|
|
|
|
|
|
let
|
|
|
|
options = {
|
|
|
|
touch = libXi != null;
|
|
|
|
pulseaudio = false;
|
|
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
2017-01-05 20:44:25 +01:00
|
|
|
name = "godot-${version}";
|
2018-03-16 20:54:32 +01:00
|
|
|
version = "3.0.2";
|
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";
|
2018-03-16 20:54:32 +01:00
|
|
|
sha256 = "1ca1zznb7qqn4vf2nfwb8nww5x0k8fc4lwjvgydr6nr2mn70xka4";
|
2017-01-05 20:44:25 +01:00
|
|
|
};
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-01-05 20:44:25 +01:00
|
|
|
buildInputs = [
|
2018-03-19 15:51:36 +01:00
|
|
|
scons libX11 libXcursor libXinerama libXrandr libXrender
|
2018-02-14 18:42:48 +01:00
|
|
|
libXi libXext libXfixes freetype openssl alsaLib 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;
|
|
|
|
|
|
|
|
buildPhase = ''
|
2018-02-14 18:42:48 +01:00
|
|
|
scons platform=x11 prefix=$out -j $NIX_BUILD_CORES \
|
|
|
|
${lib.concatStringsSep " "
|
|
|
|
(lib.mapAttrsToList (k: v: "${k}=${builtins.toJSON v}") options)}
|
2017-01-05 20:44:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-02-16 12:41:26 +01:00
|
|
|
mkdir -p $out/bin
|
2018-03-18 16:57:57 +01:00
|
|
|
cp bin/godot.x11.tools.* $out/bin/godot
|
2018-04-05 01:14:40 +02:00
|
|
|
|
|
|
|
mkdir -p "$out/share/applications"
|
|
|
|
cp misc/dist/linux/godot.desktop "$out/share/applications/"
|
|
|
|
substituteInPlace "$out/share/applications/godot.desktop" \
|
|
|
|
--replace "Exec=godot" \
|
|
|
|
"Exec=$out/bin/godot"
|
|
|
|
|
|
|
|
mkdir -p "$out/share/icons/hicolor/scalable/apps/"
|
|
|
|
cp icon.svg "$out/share/icons/hicolor/scalable/apps/godot.svg"
|
|
|
|
cp icon.png "$out/share/icons/godot.png"
|
|
|
|
|
|
|
|
mkdir -p "$out/share/man/man6"
|
|
|
|
cp misc/dist/linux/godot.6 "$out/share/man/man6/"
|
2017-01-05 20:44:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
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";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2018-03-18 16:57:57 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2018-02-14 18:42:48 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.twey ];
|
2017-01-05 20:44:25 +01:00
|
|
|
};
|
|
|
|
}
|