2012-01-06 19:13:43 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf
|
2011-11-07 17:48:05 +01:00
|
|
|
, pangoSupport ? true, pango, cairo
|
2012-01-18 21:53:01 +01:00
|
|
|
, libXfixes, libXcomposite, libXdamage }:
|
2011-11-07 17:48:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-01-06 19:13:43 +01:00
|
|
|
name = "cogl-1.8.2";
|
2011-11-07 17:48:05 +01:00
|
|
|
|
2012-01-06 19:13:43 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnome/sources/cogl/1.8/cogl-1.8.2.tar.xz;
|
|
|
|
sha256 = "1ix87hz3qxqysqwx58wbc46lzchlmfs08fjzbf3l6mmsqj8gs9pc";
|
2011-11-07 17:48:05 +01:00
|
|
|
};
|
|
|
|
|
2012-01-18 21:53:01 +01:00
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-11-07 17:48:05 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
[ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ];
|
|
|
|
|
|
|
|
buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A small open source library for using 3D graphics hardware for rendering";
|
|
|
|
longDescription =
|
|
|
|
''
|
|
|
|
Cogl is a small open source library for using 3D graphics hardware for
|
|
|
|
rendering. The API departs from the flat state machine style of OpenGL
|
|
|
|
and is designed to make it easy to write orthogonal components that can
|
|
|
|
render without stepping on each others toes.
|
|
|
|
'';
|
|
|
|
inherit (glib.meta) platforms;
|
|
|
|
};
|
|
|
|
}
|