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

68 lines
1.7 KiB
Nix
Raw Normal View History

2018-03-23 22:08:15 +00:00
{ stdenv, fetchurl, meson, ninja, gettext, pkgconfig, glib
, fixDarwinDylibNames, libintlOrEmpty, gobjectIntrospection, gnome3
}:
let
2018-03-03 05:13:34 +00:00
pname = "atk";
version = "2.28.1";
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 {
2018-03-03 05:13:34 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "1z7laf6qwv5zsqcnj222dm5f43c6f3liil0cgx4s4s62xjk1wfnd";
};
2018-03-14 05:57:12 +00:00
patches = [
# darwin linker arguments https://bugzilla.gnome.org/show_bug.cgi?id=794326
(fetchurl {
url = https://bugzilla.gnome.org/attachment.cgi?id=369680;
sha256 = "11v8fhpsbapa04ifb2268cga398vfk1nq8i628441632zjz1diwg";
})
];
outputs = [ "out" "dev" ];
2018-03-23 22:08:15 +00:00
buildInputs = libintlOrEmpty
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
2013-06-13 06:30:27 +00:00
2018-03-14 05:57:12 +00:00
nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection ];
2017-12-03 19:45:30 +00:00
propagatedBuildInputs = [
# Required by atk.pc
glib
];
2018-03-14 05:57:12 +00:00
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
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;
};
}