a9dc08d887
svn path=/nixpkgs/trunk/; revision=31367
25 lines
816 B
Nix
25 lines
816 B
Nix
{ stdenv, fetchurl, glib, xz, pkgconfig, mesa, libX11, libXext, libXfixes
|
|
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "clutter-1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/clutter/1.8/clutter-1.8.2.tar.xz;
|
|
sha256 = "0bzsvnharawfg525lpavrp55mq4aih5nb01dwwqwnccg8hk9z2fw";
|
|
};
|
|
|
|
buildNativeInputs = [ xz pkgconfig ];
|
|
buildInputs =
|
|
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
|
|
atk json_glib
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://www.clutter-project.org/;
|
|
description = "An open source software library for creating fast, compelling, portable, and dynamic graphical user interfaces";
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|