2016-04-23 03:34:16 +01:00
|
|
|
{ stdenv, fetchurl, cmake, ogre, freetype, boost, expat }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cegui";
|
2016-05-06 20:15:02 +01:00
|
|
|
version = "0.8.7";
|
2016-04-23 03:34:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/crayzedsgui/${pname}-${version}.tar.bz2";
|
2016-05-06 20:15:02 +01:00
|
|
|
sha256 = "067562s71kfsnbp2zb2bmq8zj3jk96g5a4rcc5qc3n8nfyayhldk";
|
2016-04-23 03:34:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
buildInputs = [ cmake ogre freetype boost expat ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://cegui.org.uk/";
|
2016-04-23 03:34:16 +01:00
|
|
|
description = "C++ Library for creating GUIs";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|