2009-09-30 07:27:34 +02:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, popt, atk, gtk, libX11, libICE, libXtst, libXi
|
2012-03-08 23:45:02 +01:00
|
|
|
, intltool, libbonobo, ORBit2, GConf, dbus_glib }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-08 23:45:02 +01:00
|
|
|
name = "at-spi-1.32.0";
|
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-08 23:45:02 +01:00
|
|
|
url = mirror://gnome/sources/at-spi/1.32/at-spi-1.32.0.tar.bz2;
|
|
|
|
sha256 = "0fbh0afzw1gm4r2w68b8l0vhnia1qyzdl407vyxfw4v4fkm1v16c";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 23:45:02 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
buildInputs = [ python pkgconfig popt atk gtk libX11 libICE libXtst libXi
|
2012-03-08 23:45:02 +01:00
|
|
|
intltool libbonobo ORBit2 GConf dbus_glib ];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|