mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
0281599ad2
These packages stood out while processing packages.json.gz, where the maintainer field of some packages wasn't a list of sets, but a nested list, or a string.
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
|
|
, meson
|
|
, ninja
|
|
, pkgconfig
|
|
|
|
, at-spi2-core
|
|
, atk
|
|
, dbus
|
|
, glib
|
|
, libxml2
|
|
, fixDarwinDylibNames
|
|
|
|
, gnome3 # To pass updateScript
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "at-spi2-atk";
|
|
version = "2.32.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0p54wx6f6q7s8w0b1j0sgw87pikllp79q5g3lfiwqazs779ycl8b";
|
|
};
|
|
|
|
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 ];
|
|
|
|
doCheck = false; # fails with "No test data file provided"
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
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
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|