2013-08-04 11:59:05 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, glib, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2013-10-05 11:21:13 -07:00
|
|
|
let
|
2017-09-17 05:54:20 -07:00
|
|
|
ver_maj = "2.26";
|
2013-10-05 11:21:13 -07:00
|
|
|
ver_min = "0";
|
|
|
|
in
|
2011-09-20 09:18:12 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 11:21:13 -07:00
|
|
|
name = "atk-${ver_maj}.${ver_min}";
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2012-01-06 10:13:00 -08:00
|
|
|
src = fetchurl {
|
2013-10-05 11:21:13 -07:00
|
|
|
url = "mirror://gnome/sources/atk/${ver_maj}/${name}.tar.xz";
|
2017-09-17 05:54:20 -07:00
|
|
|
sha256 = "eafe49d5c4546cb723ec98053290d7e0b8d85b3fdb123938213acb7bb4178827";
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
|
2012-08-26 19:53:19 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2013-06-12 23:30:27 -07:00
|
|
|
buildInputs = libintlOrEmpty;
|
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2013-08-04 11:59:05 -07:00
|
|
|
propagatedBuildInputs = [ glib gobjectIntrospection /*ToDo: why propagate*/ ];
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2016-12-03 03:38:01 -08:00
|
|
|
#doCheck = true; # no checks in there (2.22.0)
|
2013-10-05 11:21:13 -07:00
|
|
|
|
2011-09-20 09:18:12 -07:00
|
|
|
meta = {
|
2013-10-05 07:22:46 -07:00
|
|
|
description = "Accessibility toolkit";
|
2011-09-20 09:18:12 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
ATK is the Accessibility Toolkit. It provides a set of generic
|
|
|
|
interfaces allowing accessibility technologies such as screen
|
|
|
|
readers to interact with a graphical user interface. Using the
|
|
|
|
ATK interfaces, accessibility tools have full access to view and
|
|
|
|
control running applications.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://library.gnome.org/devel/atk/;
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2017-03-27 10:11:17 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
2013-11-06 01:58:20 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|