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

56 lines
1.3 KiB
Nix
Raw Normal View History

2018-03-03 06:13:34 +01:00
{ stdenv, fetchurl, pkgconfig, perl, glib, libintlOrEmpty, gobjectIntrospection, gnome3 }:
let
2018-03-03 06:13:34 +01:00
pname = "atk";
version = "2.26.1";
in
stdenv.mkDerivation rec {
2018-03-03 06:13:34 +01:00
name = "${pname}-${version}";
src = fetchurl {
2018-03-03 06:13:34 +01:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2017-12-03 20:45:30 +01:00
sha256 = "1jwpx8az0iifw176dc2hl4mmg6gvxzxdkd1qvg4ds7c5hdmzy07g";
};
enableParallelBuilding = true;
outputs = [ "out" "dev" ];
2013-06-13 08:30:27 +02:00
buildInputs = libintlOrEmpty;
2017-12-04 03:03:46 +01:00
nativeBuildInputs = [ pkgconfig perl gobjectIntrospection ];
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;
};
}