about summary refs log tree commit diff
path: root/pkgs/development/libraries/mygui/default.nix
blob: 0a2df00038470b5c4dc52495a049d0903ff7a794 (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, pkgconfig}:

stdenv.mkDerivation rec {
  name = "mygui-3.2.0";
  
  src = fetchurl {
    url = mirror://sourceforge/my-gui/MyGUI_3.2.0.zip;
    sha256 = "16m1xrhx13qbwnp9gds2amlwycq8q5npr0665hnknwsb6rph010p";
  };

  enableParallelBuilding = true;

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

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