at-spi2-atk: 2.32.0 → 2.34.0

This commit is contained in:
Tor Hedin Brønner 2019-09-02 16:43:58 +00:00
parent fc5c7f3325
commit 0c79a57062

View File

@ -10,23 +10,20 @@
, dbus , dbus
, glib , glib
, libxml2 , libxml2
, fixDarwinDylibNames
, gnome3 # To pass updateScript , gnome3 # To pass updateScript
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "at-spi2-atk"; pname = "at-spi2-atk";
version = "2.32.0"; version = "2.34.0";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0p54wx6f6q7s8w0b1j0sgw87pikllp79q5g3lfiwqazs779ycl8b"; sha256 = "00250s72ii8w6lb6ww61v49y9k4cswfj0hhawqlram7bl6b7x6is";
}; };
nativeBuildInputs = [ meson ninja pkgconfig ] nativeBuildInputs = [ meson ninja pkgconfig ];
# Fixup rpaths because of meson, remove with meson-0.47
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
buildInputs = [ at-spi2-core atk dbus glib libxml2 ]; buildInputs = [ at-spi2-core atk dbus glib libxml2 ];
doCheck = false; # fails with "No test data file provided" doCheck = false; # fails with "No test data file provided"
@ -40,7 +37,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "D-Bus bridge for Assistive Technology Service Provider Interface (AT-SPI) and Accessibility Toolkit (ATK)"; description = "D-Bus bridge for Assistive Technology Service Provider Interface (AT-SPI) and Accessibility Toolkit (ATK)";
homepage = https://gitlab.gnome.org/GNOME/at-spi2-atk; homepage = https://gitlab.gnome.org/GNOME/at-spi2-atk;
license = licenses.lgpl2Plus; # NOTE: 2018-06-06: Please check the license when upstream sorts-out licensing: https://gitlab.gnome.org/GNOME/at-spi2-atk/issues/2 license = licenses.lgpl21Plus;
maintainers = gnome3.maintainers; maintainers = gnome3.maintainers;
platforms = platforms.unix; platforms = platforms.unix;
}; };