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

57 lines
1.4 KiB
Nix
Raw Normal View History

2018-03-23 23:08:15 +01:00
{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, glib
, fixDarwinDylibNames, gobject-introspection, gnome3
2018-03-23 23:08:15 +01:00
}:
let
2018-03-03 06:13:34 +01:00
pname = "atk";
version = "2.32.0";
in
2018-03-23 23:08:15 +01:00
stdenv.mkDerivation rec {
2018-03-03 06:13:34 +01: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 06:34:53 +01:00
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
2013-06-13 08:30:27 +02:00
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection ];
2017-12-03 20:45:30 +01:00
propagatedBuildInputs = [
# Required by atk.pc
glib
];
2017-12-03 20:45:30 +01:00
doCheck = true;
2018-03-03 06:13:34 +01: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 10:58:20 +01:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}