2018-03-23 23:08:15 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, glib
|
2018-12-02 12:41:15 +01:00
|
|
|
, fixDarwinDylibNames, gobject-introspection, gnome3
|
2018-03-23 23:08:15 +01:00
|
|
|
}:
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2013-10-05 20:21:13 +02:00
|
|
|
let
|
2018-03-03 06:13:34 +01:00
|
|
|
pname = "atk";
|
2019-03-15 18:23:44 +01:00
|
|
|
version = "2.32.0";
|
2013-10-05 20:21:13 +02:00
|
|
|
in
|
2018-03-23 23:08:15 +01:00
|
|
|
|
2011-09-20 18:18:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 06:13:34 +01:00
|
|
|
name = "${pname}-${version}";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-01-06 19:13:00 +01:00
|
|
|
src = fetchurl {
|
2018-10-05 02:12:11 +02:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-03-15 18:23:44 +01:00
|
|
|
sha256 = "1k4i817bd2w5b9z394f2yyx95591l2746wa40am0vvz4gzdgwhfb";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2018-03-24 06:34:53 +01:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2013-06-13 08:30:27 +02:00
|
|
|
|
2018-12-02 12:41:15 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2017-12-03 20:45:30 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Required by atk.pc
|
|
|
|
glib
|
|
|
|
];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2017-12-03 20:45:30 +01:00
|
|
|
doCheck = true;
|
2013-10-05 20:21:13 +02:00
|
|
|
|
2018-03-03 06:13:34 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-09-20 18:18:12 +02:00
|
|
|
meta = {
|
2013-10-05 16:22:46 +02:00
|
|
|
description = "Accessibility toolkit";
|
2011-09-20 18:18:12 +02: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-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
2013-11-06 10:58:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|