cegui: init at 0.8.4
This commit is contained in:
parent
dfb370ce5f
commit
3f14b00106
21
pkgs/development/libraries/cegui/default.nix
Normal file
21
pkgs/development/libraries/cegui/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
@ -6492,6 +6492,8 @@ in
|
||||
celt_0_7 = callPackage ../development/libraries/celt/0.7.nix {};
|
||||
celt_0_5_1 = callPackage ../development/libraries/celt/0.5.1.nix {};
|
||||
|
||||
cegui = callPackage ../development/libraries/cegui {};
|
||||
|
||||
cgal = callPackage ../development/libraries/CGAL {};
|
||||
|
||||
cgui = callPackage ../development/libraries/cgui {};
|
||||
|
Loading…
Reference in New Issue
Block a user