41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, gcc, scons, pkgconfig, libX11, libXcursor
|
|
, libXinerama, libXrandr, libXrender, freetype, openssl, alsaLib
|
|
, libpulseaudio, mesa_glu, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "godot-${version}";
|
|
version = "2.1.3-stable";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "godotengine";
|
|
repo = "godot";
|
|
rev = version;
|
|
sha256 = "04qbab0icpv3ascr4dqgj18sqvw04a1jypcngb0ji8npa8q9wxb2";
|
|
};
|
|
|
|
buildInputs = [
|
|
gcc scons pkgconfig libX11 libXcursor libXinerama libXrandr libXrender
|
|
freetype openssl alsaLib libpulseaudio mesa_glu zlib
|
|
];
|
|
|
|
patches = [ ./pkg_config_additions.patch ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildPhase = ''
|
|
scons platform=x11 prefix=$out -j $NIX_BUILD_CORES
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir $out/bin -p
|
|
cp bin/godot.* $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://godotengine.org";
|
|
description = "Free and Open Source 2D and 3D game engine";
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|