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

stdenv.mkDerivation rec {
  name = "cegui-${version}";
  version = "0.8.4";

  src = fetchurl {
    url = "mirror://sourceforge/crayzedsgui/${name}.tar.bz2";
    sha256 = "1253aywv610rbs96hwqiw2z7xrrv24l3jhfsqj95w143idabvz5m";
  };


  buildInputs = [ cmake ogre freetype boost expat ];

  meta = with stdenv.lib; {
    homepage = http://cegui.org.uk/;
    description = "C++ Library for creating GUIs";
    license = licenses.mit;
    platforms = platforms.linux;
  };
}