nixpkgs/pkgs/development/libraries/mygui/default.nix
2015-09-26 20:52:33 +02:00

24 lines
640 B
Nix

{stdenv, fetchFromGitHub, libX11, unzip, ogre, cmake, ois, freetype, libuuid, boost, pkgconfig}:
stdenv.mkDerivation rec {
name = "mygui-${version}";
version = "3.2.2";
src = fetchFromGitHub {
owner = "MyGUI";
repo = "mygui";
rev = "MyGUI${version}";
sha256 = "1wk7jmwm55rhlqqcyvqsxdmwvl70bysl9azh4kd9n57qlmgk3zmw";
};
enableParallelBuilding = true;
buildInputs = [ libX11 unzip ogre cmake ois freetype libuuid boost pkgconfig ];
meta = {
homepage = http://mygui.info/;
description = "Library for creating GUIs for games and 3D applications";
license = stdenv.lib.licenses.lgpl3Plus;
};
}