3
0
Fork 0
forked from mirrors/nixpkgs

Merge commit 'refs/pull/14593/head' of git://github.com/NixOS/nixpkgs

This commit is contained in:
Nikolay Amiantov 2016-04-12 03:07:40 +03:00
commit c322c042cf

View file

@ -1,9 +1,10 @@
{stdenv, fetchFromGitHub, libX11, unzip, ogre, cmake, ois, freetype, libuuid, boost, pkgconfig}:
{ stdenv, fetchFromGitHub, libX11, unzip, cmake, ois, freetype, libuuid,
boost, pkgconfig, lib, withOgre ? true, ogre ? null } :
stdenv.mkDerivation rec {
name = "mygui-${version}";
version = "3.2.2";
src = fetchFromGitHub {
owner = "MyGUI";
repo = "mygui";
@ -13,7 +14,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ libX11 unzip ogre cmake ois freetype libuuid boost pkgconfig ];
buildInputs = [ libX11 unzip cmake ois freetype libuuid boost pkgconfig ]
++ lib.optional withOgre [ ogre ];
cmakeFlags = lib.optional (! withOgre) ["-DMYGUI_RENDERSYSTEM=1" "-DMYGUI_BUILD_DEMOS=OFF" "-DMYGUI_BUILD_TOOLS=OFF" "-DMYGUI_BUILD_PLUGINS=OFF"];
meta = {
homepage = http://mygui.info/;