at-spi2: New package, starting at version 2.7.2.

This package consists of actually two packages:

 * at-spi-core: The core library
 * at-spi-atk: The atk-bridging library

The latter depends on the core library and is needed by unity, so watch out for
further buildInputs :-)

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2012-12-12 04:32:34 +01:00
parent 0be7f115ac
commit 8b574e9950
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ stdenv, fetchurl, pkgconfig, at_spi2_core, dbus, glib, atk }:
stdenv.mkDerivation rec {
name = "at-spi2-atk-${version}";
version = "2.7.2";
buildInputs = [ pkgconfig at_spi2_core dbus glib atk ];
src = fetchurl {
url = "mirror://gnome/sources/at-spi2-atk/2.7/${name}.tar.xz";
sha256 = "dbce8f6828ec4be619d7c6db797385063ee2f7365dfe57d08eea013d61bf1a73";
};
}

View File

@ -0,0 +1,15 @@
{ stdenv, fetchurl, pkgconfig, intltool, dbus, glib
, x11, libXtst, libXi
}:
stdenv.mkDerivation rec {
name = "at-spi2-core-${version}";
version = "2.7.2";
propagatedBuildInputs = [ pkgconfig intltool dbus glib x11 libXtst libXi ];
src = fetchurl {
url = "mirror://gnome/sources/at-spi2-core/2.7/${name}.tar.xz";
sha256 = "da87a2a475014552f15ae5435c993ca54d47e5e68826165f643577dde99be355";
};
}

View File

@ -3322,6 +3322,9 @@ let
inherit fetchurl stdenv aspell which;
});
at_spi2_core = callPackage ../development/libraries/at-spi2/core.nix { };
at_spi2_atk = callPackage ../development/libraries/at-spi2/atk.nix { };
aterm = aterm25;
aterm25 = callPackage ../development/libraries/aterm/2.5.nix { };