summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/at-spi/default.nix
blob: b0b669148ff314e04bde068527271f6745e702c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, python, pkgconfig, popt, atk, gtk, libX11, libICE, libXtst, libXi
, intltool, libbonobo, ORBit2, GConf, dbus_glib }:

stdenv.mkDerivation {
  name = "at-spi-1.32.0";

  src = fetchurl {
    url = mirror://gnome/sources/at-spi/1.32/at-spi-1.32.0.tar.bz2;
    sha256 = "0fbh0afzw1gm4r2w68b8l0vhnia1qyzdl407vyxfw4v4fkm1v16c";
  };

  hardeningDisable = [ "format" ];

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ python popt atk gtk libX11 libICE libXtst libXi
                  intltool libbonobo ORBit2 GConf dbus_glib ];
}