Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 21 lines 532 B view raw
1{ stdenv, fetchurl, cmake, ogre, freetype, boost, expat }: 2 3stdenv.mkDerivation rec { 4 name = "cegui-${version}"; 5 version = "0.8.7"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/crayzedsgui/${name}.tar.bz2"; 9 sha256 = "067562s71kfsnbp2zb2bmq8zj3jk96g5a4rcc5qc3n8nfyayhldk"; 10 }; 11 12 13 buildInputs = [ cmake ogre freetype boost expat ]; 14 15 meta = with stdenv.lib; { 16 homepage = http://cegui.org.uk/; 17 description = "C++ Library for creating GUIs"; 18 license = licenses.mit; 19 platforms = platforms.linux; 20 }; 21}