nixpkgs/pkgs/development/tools/godot/default.nix

55 lines
1.4 KiB
Nix
Raw Normal View History

2018-02-14 17:42:48 +00:00
{ stdenv, lib, fetchFromGitHub, gcc5, scons, pkgconfig, libX11, libXcursor
, 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 {
name = "godot-${version}";
2018-03-16 19:54:32 +00:00
version = "3.0.2";
src = fetchFromGitHub {
owner = "godotengine";
repo = "godot";
rev = "${version}-stable";
2018-03-16 19:54:32 +00:00
sha256 = "1ca1zznb7qqn4vf2nfwb8nww5x0k8fc4lwjvgydr6nr2mn70xka4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
gcc5 scons libX11 libXcursor libXinerama libXrandr libXrender
2018-02-14 17:42:48 +00:00
libXi libXext libXfixes freetype openssl alsaLib libpulseaudio
libGLU zlib yasm
];
patches = [
./pkg_config_additions.patch
./dont_clobber_environment.patch
];
enableParallelBuilding = true;
buildPhase = ''
2018-02-14 17:42:48 +00:00
scons platform=x11 prefix=$out -j $NIX_BUILD_CORES \
${lib.concatStringsSep " "
(lib.mapAttrsToList (k: v: "${k}=${builtins.toJSON v}") options)}
'';
installPhase = ''
2018-02-16 11:41:26 +00:00
mkdir -p $out/bin
2018-03-18 15:57:57 +00:00
cp bin/godot.x11.tools.* $out/bin/godot
'';
meta = {
2017-08-17 20:13:32 +00:00
homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine";
license = stdenv.lib.licenses.mit;
2018-03-18 15:57:57 +00:00
platforms = [ "i686-linux" "x86_64-linux" ];
2018-02-14 17:42:48 +00:00
maintainers = [ stdenv.lib.maintainers.twey ];
};
}