at-spi2-atk: maintainers, license, clean-up

This commit is contained in:
Anton-Latukha 2018-06-05 15:18:21 +03:00
parent ed2497f3a7
commit d4fe62dc46

View File

@ -1,14 +1,24 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig
, at-spi2-core, atk, dbus, glib, libxml2 }:
{ stdenv
, fetchurl
, meson
, ninja
, pkgconfig
, at-spi2-core
, atk
, dbus
, glib
, libxml2
}:
stdenv.mkDerivation rec {
name = "${moduleName}-${versionMajor}.${versionMinor}";
moduleName = "at-spi2-atk";
versionMajor = "2.26";
versionMinor = "2";
name = "${moduleName}-${version}";
moduleName = "at-spi2-atk";
version = "2.26.2";
src = fetchurl {
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
url = "mirror://gnome/sources/${moduleName}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "0vkan52ab9vrkknnv8y4f1cspk8x7xd10qx92xk9ys71p851z2b1";
};
@ -17,8 +27,9 @@ stdenv.mkDerivation rec {
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";
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 = with maintainers; [ jtojnar gnome3.maintainers ];
platforms = platforms.unix;
};
}