summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/platform/clutter.nix
blob: 4e7bc54c1295f160ffcd1747975698460ff95dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}