at 23.05-pre 21 lines 560 B view raw
1{ lib, stdenv, fetchurl, cmake, ogre, freetype, boost, expat }: 2 3stdenv.mkDerivation rec { 4 pname = "cegui"; 5 version = "0.8.7"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/crayzedsgui/${pname}-${version}.tar.bz2"; 9 sha256 = "067562s71kfsnbp2zb2bmq8zj3jk96g5a4rcc5qc3n8nfyayhldk"; 10 }; 11 12 nativeBuildInputs = [ cmake ]; 13 buildInputs = [ ogre freetype boost expat ]; 14 15 meta = with lib; { 16 homepage = "http://cegui.org.uk/"; 17 description = "C++ Library for creating GUIs"; 18 license = licenses.mit; 19 platforms = platforms.linux; 20 }; 21}