48db154dbb
svn path=/nixpkgs/trunk/; revision=17529
13 lines
453 B
Nix
13 lines
453 B
Nix
{ stdenv, fetchurl, python, pkgconfig, popt, atk, gtk, libX11, libICE, libXtst, libXi
|
|
, intltool, libbonobo, ORBit2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "at-spi-1.28.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/at-spi/1.28/at-spi-1.28.0.tar.bz2;
|
|
sha256 = "0rv616drqpk58vybi3kalzyx06dxg26iwkbcrzk5563avhhj5qpb";
|
|
};
|
|
buildInputs = [ python pkgconfig popt atk gtk libX11 libICE libXtst libXi
|
|
intltool libbonobo ORBit2 ];
|
|
}
|