about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/compiz/default.nix
blob: 3ba52518d38ee27d1323e5dbb9d0fb14bf1d3dd0 (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
{ stdenv, fetchurl, pkgconfig, libpng, libXcomposite, libXfixes
, libXdamage, libXrandr, libXinerama, libICE, libSM
, startupnotification, libXrender, xextproto, mesa, gtk, libwnck, GConf
}:

stdenv.mkDerivation {
  name = "compiz-0.5.0";
  src = fetchurl {
    url = http://xorg.freedesktop.org/archive/individual/app/compiz-0.5.0.tar.gz;
    sha256 = "1fac5fc37b218k34lpxqlhs7srqxm7jly0hfncs3ghmjmxdlj03y";
  };
  patches = [
    ./tfp-server-extension.patch
  ];
  buildInputs = [
    pkgconfig libXrender xextproto gtk libwnck GConf
  ];
  propagatedBuildInputs = [
    libpng libXcomposite libXfixes libXdamage libXrandr libXinerama
    libICE libSM startupnotification mesa
  ];
  configureFlags = "--enable-gtk";
}