2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, meson, ninja, gettext, pkg-config, glib
|
2018-12-02 03:41:15 -08:00
|
|
|
, fixDarwinDylibNames, gobject-introspection, gnome3
|
2018-03-23 15:08:15 -07:00
|
|
|
}:
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2013-10-05 11:21:13 -07:00
|
|
|
let
|
2018-03-02 21:13:34 -08:00
|
|
|
pname = "atk";
|
2020-04-05 11:04:15 -07:00
|
|
|
version = "2.36.0";
|
2013-10-05 11:21:13 -07:00
|
|
|
in
|
2018-03-23 15:08:15 -07:00
|
|
|
|
2011-09-20 09:18:12 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-02 21:13:34 -08:00
|
|
|
name = "${pname}-${version}";
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2012-01-06 10:13:00 -08:00
|
|
|
src = fetchurl {
|
2021-01-21 09:00:13 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
|
2020-04-05 11:04:15 -07:00
|
|
|
sha256 = "1217cmmykjgkkim0zr1lv5j13733m4w5vipmy4ivw0ll6rz28xpv";
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config gettext gobject-introspection glib ]
|
2021-01-21 09:00:13 -08:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2017-12-03 11:45:30 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Required by atk.pc
|
|
|
|
glib
|
|
|
|
];
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2019-09-02 10:33:50 -07:00
|
|
|
patches = [
|
|
|
|
# meson builds an incorrect .pc file
|
|
|
|
# glib should be Requires not Requires.private
|
|
|
|
./fix_pc.patch
|
|
|
|
];
|
|
|
|
|
2017-12-03 11:45:30 -08:00
|
|
|
doCheck = true;
|
2013-10-05 11:21:13 -07:00
|
|
|
|
2018-03-02 21:13:34 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
2021-03-20 16:57:24 -07:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-03-02 21:13:34 -08: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.
|
|
|
|
'';
|
|
|
|
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://library.gnome.org/devel/atk/";
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
maintainers = with lib.maintainers; [ raskin ];
|
2021-01-23 09:15:07 -08:00
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|