summary refs log tree commit diff
path: root/pkgs/development/libraries/mygui/default.nix
blob: f692c14a6df13b6be07282280a993006cd5e90be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, unzip, ogre, cmake, ois, freetype, libuuid, boost}:

stdenv.mkDerivation rec {
  name = "mygui-3.0.1";
  
  src = fetchurl {
    url = mirror://sourceforge/my-gui/MyGUI_3.0.1_source.zip;
    sha256 = "1n56kl8ykzgv4k2nm9317jg9b9x2qa3l9hamz11hzn1qqjn2z4ig";
  };

  enableParallelBuilding = true;

  buildInputs = [ unzip ogre cmake ois freetype libuuid boost ];

  meta = {
    homepage = http://mygui.info/;
    description = "Library for creating GUIs for games and 3D applications";
    license = "LGPLv3+";
  };
}