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

stdenv.mkDerivation rec {
  name = "compizconfig-python-0.8.4";

  src = fetchurl {
    url = "http://releases.compiz.org/components/compizconfig-python/${name}.tar.bz2";
    sha256 = "0nkgqxddjw324aymzcy5nx6ilhfbpk9rra4qbzrq3l39xqsswd37";
  };

  buildInputs = [ pkgconfig libcompizconfig glib python pyrex xlibs.xlibs ];

  NIX_LDFLAGS = "-lcompizconfig";

  meta = {
    homepage = http://www.compiz.org/;
    description = "Python interface to the Compiz configuration";
  };
}