Remove gnome3.clutter

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33202
This commit is contained in:
Yury G. Kudryashov 2012-03-17 16:46:06 +00:00
parent d1860f6def
commit ee5b976a93
2 changed files with 0 additions and 26 deletions

View file

@ -1,7 +1,5 @@
{ callPackage }:
{
clutter = callPackage ./platform/clutter.nix { };
gnome_user_docs = callPackage ./platform/gnome-user-docs.nix { };
}

View file

@ -1,24 +0,0 @@
{ stdenv, fetchurl, glib, 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 = [ 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 ];
};
}