summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/platform/clutter.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-3/platform/clutter.nix')
-rw-r--r--pkgs/desktops/gnome-3/platform/clutter.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/platform/clutter.nix b/pkgs/desktops/gnome-3/platform/clutter.nix
new file mode 100644
index 00000000000..4e7bc54c129
--- /dev/null
+++ b/pkgs/desktops/gnome-3/platform/clutter.nix
@@ -0,0 +1,24 @@
+{ 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 ];
+  };
+}