2007-02-27 03:52:28 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libXcomposite, libXfixes
|
|
|
|
, libXdamage, libXrandr, libXinerama, libICE, libSM
|
2007-03-01 01:40:27 +01:00
|
|
|
, startupnotification, libXrender, xextproto, mesa, gtk, libwnck, GConf
|
2007-02-27 03:52:28 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
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 = [
|
2007-03-05 14:44:27 +01:00
|
|
|
pkgconfig libXrender xextproto gtk libwnck GConf
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libpng libXcomposite libXfixes libXdamage libXrandr libXinerama
|
|
|
|
libICE libSM startupnotification mesa
|
2007-02-27 03:52:28 +01:00
|
|
|
];
|
2007-03-01 01:40:27 +01:00
|
|
|
configureFlags = "--enable-gtk";
|
2007-02-27 03:52:28 +01:00
|
|
|
}
|