1 { lib, stdenv, fetchurl, pkg-config, libGLU, libGL, libX11, libXext, libXfixes
2 , libXdamage, libXcomposite, libXi, libxcb, cogl, pango, atk, json-glib
3 , gobject-introspection, gtk3, gnome, libinput, libgudev, libxkbcommon
10 stdenv.mkDerivation rec {
11 name = "${pname}-${version}";
14 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
15 sha256 = "1rn4cd1an6a9dfda884aqpcwcgq8dgydpqvb19nmagw4b70zlj4b";
18 outputs = [ "out" "dev" ];
20 buildInputs = [ gtk3 ];
21 nativeBuildInputs = [ pkg-config gobject-introspection ];
22 propagatedBuildInputs =
23 [ libX11 libGL libGLU libXext libXfixes libXdamage libXcomposite libXi cogl pango
24 atk json-glib gobject-introspection libxcb libinput libgudev libxkbcommon
27 configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK
29 #doCheck = true; # no tests possible without a display
32 updateScript = gnome.updateScript {
34 versionPolicy = "odd-unstable";
39 description = "Library for creating fast, dynamic graphical user interfaces";
42 '' Clutter is free software library for creating fast, compelling,
43 portable, and dynamic graphical user interfaces. It is a core part
44 of MeeGo, and is supported by the open source community. Its
45 development is sponsored by Intel.
47 Clutter uses OpenGL for rendering (and optionally OpenGL|ES for use
48 on mobile and embedded platforms), but wraps an easy to use,
49 efficient, flexible API around GL's complexity.
51 Clutter enforces no particular user interface style, but provides a
52 rich, generic foundation for higher-level toolkits tailored to
56 license = lib.licenses.lgpl2Plus;
57 homepage = "http://www.clutter-project.org/";
59 maintainers = with lib.maintainers; [ ];
60 platforms = lib.platforms.mesaPlatforms;