2013-01-10 15:10:27 +01:00
|
|
|
{stdenv, fetchurl, unzip, ogre, cmake, ois, freetype, libuuid, boost, pkgconfig}:
|
2011-03-31 00:08:33 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-10 15:10:27 +01:00
|
|
|
name = "mygui-3.2.0";
|
2011-03-31 00:08:33 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-01-10 15:10:27 +01:00
|
|
|
url = mirror://sourceforge/my-gui/MyGUI_3.2.0.zip;
|
|
|
|
sha256 = "16m1xrhx13qbwnp9gds2amlwycq8q5npr0665hnknwsb6rph010p";
|
2011-03-31 00:08:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-01-10 15:10:27 +01:00
|
|
|
buildInputs = [ unzip ogre cmake ois freetype libuuid boost pkgconfig ];
|
2011-03-31 00:08:33 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://mygui.info/;
|
|
|
|
description = "Library for creating GUIs for games and 3D applications";
|
|
|
|
license = "LGPLv3+";
|
|
|
|
};
|
|
|
|
}
|