* Compiz, a compositing window manager.

svn path=/nixpkgs/trunk/; revision=8071
This commit is contained in:
Eelco Dolstra 2007-02-27 02:52:28 +00:00
parent 213aefac17
commit d3bdca7623
4 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, libpng, libXcomposite, libXfixes
, libXdamage, libXrandr, libXinerama, libICE, libSM
, startupnotification, libXrender, xextproto, mesa, gtk
}:
stdenv.mkDerivation {
name = "compiz-0.3.6";
src = fetchurl {
url = http://xorg.freedesktop.org/archive/individual/app/compiz-0.3.6.tar.bz2;
sha256 = "0z7cprg510x1sjzsj8h02l1q5h7qvhcn7z94b7a48pxv124z7qpg";
};
patches = fetchurl {
url = http://gandalfn.club.fr/ubuntu/compiz-patch/02-tfp-server-extension.patch;
sha256 = "1hi53ajypmgsyfz7cziccdk9f8mn3pfl255yjzl0v15nv5kacmiq";
};
buildInputs = [
pkgconfig libpng libXcomposite libXfixes libXdamage libXrandr
libXinerama libICE libSM startupnotification libXrender xextproto
mesa gtk
];
configureFlags = "--disable-gconf";
}

View file

@ -181,4 +181,9 @@ rec {
input = desktop.libsoup;
};
startupnotification = (import ./startup-notification) {
inherit stdenv fetchurl pkgconfig x11;
input = desktop.startupnotification;
};
}

View file

@ -0,0 +1,6 @@
{input, stdenv, fetchurl, pkgconfig, x11}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig x11];
}

View file

@ -2537,6 +2537,14 @@ rec {
};
};
compiz = import ../applications/window-managers/compiz {
inherit fetchurl stdenv pkgconfig libpng mesa;
inherit (xorg) libXcomposite libXfixes libXdamage libXrandr
libXinerama libICE libSM libXrender xextproto;
inherit (gnome) startupnotification;
inherit (gtkLibs) gtk;
};
cua = import ../applications/editors/emacs-modes/cua {
inherit fetchurl stdenv;
};