about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-17 16:46:06 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-17 16:46:06 +0000
commitee5b976a93a0e74740eabcbaac87618f49af8969 (patch)
tree7e7ecd1a05903f54503e4adbbe17c634010e8bd4 /pkgs/desktops
parentd1860f6defff970ca2ed6557cf0bd4895c8ed4b2 (diff)
downloadnixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar.gz
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar.bz2
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar.lz
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar.xz
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.tar.zst
nixlib-ee5b976a93a0e74740eabcbaac87618f49af8969.zip
Remove gnome3.clutter
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33202
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome-3/default.nix2
-rw-r--r--pkgs/desktops/gnome-3/platform/clutter.nix24
2 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/desktops/gnome-3/default.nix b/pkgs/desktops/gnome-3/default.nix
index 6abee3c40974..fb503d1abb5f 100644
--- a/pkgs/desktops/gnome-3/default.nix
+++ b/pkgs/desktops/gnome-3/default.nix
@@ -1,7 +1,5 @@
 { callPackage }:
 
 {
-  clutter = callPackage ./platform/clutter.nix { };
-
   gnome_user_docs = callPackage ./platform/gnome-user-docs.nix { };
 }
diff --git a/pkgs/desktops/gnome-3/platform/clutter.nix b/pkgs/desktops/gnome-3/platform/clutter.nix
deleted file mode 100644
index b2ee5539008a..000000000000
--- a/pkgs/desktops/gnome-3/platform/clutter.nix
+++ /dev/null
@@ -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 ];
-  };
-}