nixpkgs/pkgs/development/libraries/atk/default.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

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