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

63 lines
1.5 KiB
Nix
Raw Normal View History

2018-03-23 15:08:15 -07:00
{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, glib
, fixDarwinDylibNames, gobject-introspection, gnome3
2018-03-23 15:08:15 -07:00
}:
let
2018-03-02 21:13:34 -08:00
pname = "atk";
version = "2.34.1";
in
2018-03-23 15:08:15 -07:00
stdenv.mkDerivation rec {
2018-03-02 21:13:34 -08:00
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "1jwp16r6p5z66k4b2v8zlzhyshhwlmyi27ippkrgqr8jsary7w6l";
};
outputs = [ "out" "dev" ];
2018-03-23 22:34:53 -07:00
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
2013-06-12 23:30:27 -07:00
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection ];
2017-12-03 11:45:30 -08:00
propagatedBuildInputs = [
# Required by atk.pc
glib
];
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;
2018-03-02 21:13:34 -08: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 01:58:20 -08:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}