clutter-1.8.2
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33188
This commit is contained in:
parent
23dbae430f
commit
5c4e3c7701
|
@ -1,20 +1,18 @@
|
||||||
{ fetchurl, stdenv, pkgconfig, mesa, libXi, libXfixes, libXdamage
|
{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes
|
||||||
, libXcomposite, cairo, glib, pango, gtk, json_glib }:
|
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
name = "clutter-1.4.2";
|
name = "clutter-1.8.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://source.clutter-project.org/sources/clutter/1.4/${name}.tar.bz2";
|
url = mirror://gnome/sources/clutter/1.8/clutter-1.8.2.tar.xz;
|
||||||
sha256 = "14l8wgk5jdwsnjf991qgzl115kjs1xywil2awlrwj1airsn6gzcj";
|
sha256 = "0bzsvnharawfg525lpavrp55mq4aih5nb01dwwqwnccg8hk9z2fw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig ];
|
buildNativeInputs = [ pkgconfig ];
|
||||||
|
|
||||||
# There are all listed in the `Requires' field of `clutter-x11-1.0.pc'.
|
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
[ mesa cairo glib pango gtk json_glib
|
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
|
||||||
libXi libXfixes libXdamage libXcomposite
|
atk json_glib
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -38,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||||
license = "LGPLv2+";
|
license = "LGPLv2+";
|
||||||
homepage = http://www.clutter-project.org/;
|
homepage = http://www.clutter-project.org/;
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
maintainers = with stdenv.lib.maintainers; [ urkud ludo ];
|
||||||
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue