forked from mirrors/nixpkgs
Add gnome3.clutter
svn path=/nixpkgs/trunk/; revision=31363
This commit is contained in:
parent
69f2dfe7da
commit
af347062d0
|
@ -1,6 +1,10 @@
|
|||
{ callPackage }:
|
||||
|
||||
{
|
||||
clutter = callPackage ./platform/clutter.nix { };
|
||||
|
||||
cogl = callPackage ../../development/libraries/cogl { };
|
||||
|
||||
# Ensure that we use dbus-glib built with gtkLibs3x.glib
|
||||
dbus_glib = callPackage ../../development/libraries/dbus-glib { };
|
||||
|
||||
|
|
15
pkgs/desktops/gnome-3/platform/clutter.nix
Normal file
15
pkgs/desktops/gnome-3/platform/clutter.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ 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 glib mesa libXext libXfixes libXdamage libXcomposite
|
||||
libXi cogl pango atk json_glib ];
|
||||
}
|
Loading…
Reference in a new issue