about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/compiz/libcompizconfig.nix
blob: 51d459e7a36636c4e2719e66252c842ebd80d96b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl,intltool, pkgconfig, xlibs, libxml2, libxslt, compiz }:

stdenv.mkDerivation rec {
  name = "libcompizconfig-0.8.4";

  src = fetchurl {
    url = "http://releases.compiz.org/components/libcompizconfig/${name}.tar.bz2";
    sha256 = "0adhl2nc2zrswl5n4a8ipymffq6yjwnxgpkv6rsk7sqvby9kwca1";
  };

  patches =
    [ # See ./core.nix.
      ./plugindir-libcompizconfig.patch
    ];

  buildInputs = [ pkgconfig intltool xlibs.libX11 compiz libxml2 libxslt ];

  meta = {
    homepage = http://www.compiz.org/;
    description = "Compiz configuration library";
  };
}